System.Dynamic.Tests.CallInfoTests.NullItem C# (CSharp) Méthode

NullItem() private méthode

private NullItem ( ) : void
Résultat void
        public void NullItem()
        {
            Assert.Throws<ArgumentNullException>("argNames[1]", () => new CallInfo(3, "foo", null, "bar"));
            Assert.Throws<ArgumentNullException>(
                "argNames[0]", () => new CallInfo(3, Enumerable.Repeat(default(string), 2)));
        }