System.Json.Tests.JsonValueTests.Load_NullTextReader_ThrowsArgumentNullException C# (CSharp) Метод

Load_NullTextReader_ThrowsArgumentNullException() приватный Метод

private Load_NullTextReader_ThrowsArgumentNullException ( ) : void
Результат void
        public void Load_NullTextReader_ThrowsArgumentNullException()
        {
            Assert.Throws<ArgumentNullException>("textReader", () => JsonValue.Load((TextReader)null));
        }
JsonValueTests