AjErl.Tests.Language.TupleTests.NoMatchTuplesWithDifferentArities C# (CSharp) Method

NoMatchTuplesWithDifferentArities() private method

private NoMatchTuplesWithDifferentArities ( ) : void
return void
        public void NoMatchTuplesWithDifferentArities()
        {
            Tuple tuple = new Tuple(new object[] { 1, 2, 3 });
            Tuple tuple2 = new Tuple(new object[] { 1, 2, 3, 4 });
            Context context = new Context();
            Assert.IsFalse(tuple.Match(tuple2, context));
            Assert.IsFalse(tuple2.Match(tuple, context));
        }