Example #1
0
        public void TestString()
        {
            string arg    = "test";
            string result = m_testService.EchoString(arg);

            Assert.AreEqual(arg, result);
        }
Example #2
0
 public void TestEchoStringNotNull()
 {
     System.String testString = "abcd";
     System.String result     = m_testService.EchoString(testString);
     Assertion.AssertEquals("result", testString, result);
 }