Esempio n. 1
0
 public void TestOneDimIdlIntArray()
 {
     int[] arg    = new int[] { 1, 2, 3, 4, 5 };
     int[] result = m_testService.EchoIntList5(arg);
     Assert.AreEqual(arg.Length, result.Length);
     for (int i = 0; i < arg.Length; i++)
     {
         Assert.AreEqual(arg[i], result[i]);
     }
 }