static void Main(string[] args)
        {
            //Repository repository = new Repository();
            //TestHarness testHarness = new TestHarness(repository);
            TestHarness testHarness = new TestHarness();

            testHarness.processMessages();
            testHarness.wait();
        }
Example #2
0
 static void Main(string[] args)
 {
     Console.Title = "TestHarnessDemo";
     "Begin of Testharess Main Execution".title();
     try
     {
         TestHarness myth_ = new TestHarness();
         myth_.CreateThRecvChannel("http://localhost:8080/TestHarnessIService");
         myth_.wait();
     }
     catch (Exception ex)
     {
         Console.Write("\n\n  {0}\n\n", ex.Message);
     }
     Console.ReadLine();
 }