Meyn.TestLink.TestLink.SayHello C# (CSharp) Method

SayHello() public method

basic Ping
public SayHello ( ) : string
return string
        public string SayHello()
        {
            string hello = proxy.sayHello();
            return hello;
        }

Usage Example

Example #1
0
 public void shouldFailBecauseOfInvalidURL()
 {
     proxy = new TestLink(apiKey, "http://localhost/testlink/api/xmlrpc.php");
     string result = proxy.SayHello();
     Assert.AreNotEqual("Hello!", result, "Unexpected Server Response");
     Assert.Fail("Did not cause an exception");
 }
All Usage Examples Of Meyn.TestLink.TestLink::SayHello