Exemplo n.º 1
0
            public void TestArrayValidator2 <T>(T[] array1, T[] array2)
            {
                var tmp1 = array1;

                ClosureValidators.NotNullArray(array1, "array1");
                var tmp2 = array2;

                ClosureValidators.NotNullArray(array2, "array2");
            }
Exemplo n.º 2
0
            public void TestCollectionValidator2 <T>(ICollection <T> coll1, ICollection <T> coll2)
            {
                var tmp1 = coll1;

                ClosureValidators.NotNullCollection(tmp1, "coll1");
                var tmp2 = coll2;

                ClosureValidators.NotNullCollection(tmp2, "coll2");
            }
Exemplo n.º 3
0
 public void TestArrayValidator <T>(T[] array1, T[] array2)
 {
     ClosureValidators.NotNullArray(array1, "array1");
     ClosureValidators.NotNullArray(array2, "array2");
 }
Exemplo n.º 4
0
 public void TestCollectionValidator <T>(ICollection <T> coll1, ICollection <T> coll2)
 {
     ClosureValidators.NotNullCollection(coll1, "coll1");
     ClosureValidators.NotNullCollection(coll2, "coll2");
 }