Vodafone Test Suite

Dependencies:   mbed-rtos mbed HTTPClient VodafoneUSBModem

Revision:
44:6d0ac4747f5b
Parent:
40:32b0558320ea
--- a/TestManager.h	Fri Sep 14 15:14:29 2012 +0000
+++ b/TestManager.h	Mon Sep 17 13:28:39 2012 +0000
@@ -12,17 +12,17 @@
       TestManager(VodafoneUSBModem *m);
       void addTest(VodafoneTestCase *tc);
       
-      bool executeTest(int id);
-      bool executeTest(int id, int numTimes);
-      int executeTestProfile(TestProfile profile);
-      int getTestProfileLength(TestProfile profile);
+      bool runTest(int id);
+      bool runTest(int id, int numTimes);
+      int  runTestProfile(TestProfile profile);
+      int  getTestProfileLength(TestProfile profile);
       
       
    private:
       VodafoneUSBModem *_modem;
       vector<VodafoneTestCase*> _tests;
       VodafoneTestCase* constructTest(int id);
-      int executeTestList(const int *list, const int listLen);
+      int  runTestList(const int *list, const int listLen);
       void listFailures(const int *list, const int listLen);
       void resetTestOutcomes();
       bool *_testOutcomes;