System.Json.Tests.JsonValueTests.Load_NullStream_ThrowsArgumentNullException C# (CSharp) Method

Load_NullStream_ThrowsArgumentNullException() private method

private Load_NullStream_ThrowsArgumentNullException ( ) : void
return void
        public void Load_NullStream_ThrowsArgumentNullException()
        {
            Assert.Throws<ArgumentNullException>("stream", () => JsonValue.Load((Stream)null));
        }
JsonValueTests