Exemplo n.º 1
0
 public Network.ListTestCase ListTestCase(string unitTest)
 {
     Network.ListTestCase result = new Network.ListTestCase();
     result.UnitTest = unitTest;
     this.NetClient.Send(result);
     return(result);
 }
Exemplo n.º 2
0
        public ListTestCaseResponse ListTestCase(Network.ListTestCase e)
        {
            ListTestCaseResponse response = new Network.ListTestCaseResponse();
            TestInfo             test     = mTestFolderManager.GetInfo(e.UnitTest);

            if (test != null)
            {
                response.Cases = test.GetUnitTests();
            }
            return(response);
        }