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

Save_Null_ThrowsArgumentNullException() private method

private Save_Null_ThrowsArgumentNullException ( ) : void
return void
        public void Save_Null_ThrowsArgumentNullException()
        {
            JsonValue value = new JsonSubValue();
            Assert.Throws<ArgumentNullException>("stream", () => value.Save((Stream)null));
        }
JsonValueTests