Exemple #1
0
 public void TestOneDimIdlStringArray()
 {
     string[] arg    = new string[] { "1", "2", "3", "4", "5" };
     string[] result = m_testService.EchoStringList5(arg);
     Assert.AreEqual(arg.Length, result.Length);
     for (int i = 0; i < arg.Length; i++)
     {
         Assert.AreEqual(arg[i], result[i]);
     }
 }