Vodafone Test Suite

Dependencies:   mbed-rtos mbed HTTPClient VodafoneUSBModem

Revision:
20:18373fb68ad7
Parent:
19:26fbed33d4e7
Child:
22:5b1feecf2aeb
--- a/TestManager.cpp	Mon Sep 03 16:02:58 2012 +0000
+++ b/TestManager.cpp	Tue Sep 04 15:31:55 2012 +0000
@@ -5,17 +5,18 @@
    for(int i=0; i<12; i++) {
       _tests.push_back(NULL);
    }
-   _tests.push_back((VodafoneTestCase*)new Test12(_modem, 12));
-   _tests.push_back((VodafoneTestCase*)new Test13(_modem, 13));
+   _tests.push_back((VodafoneTestCase*)new Test12(_modem,12));
+   _tests.push_back((VodafoneTestCase*)new Test13(_modem,13));
    for(int i=14; i<21; i++) {
       _tests.push_back(NULL);
    }
-   _tests.push_back((VodafoneTestCase*)new Test21(_modem, 21));
-   _tests.push_back((VodafoneTestCase*)new Test22(_modem, 22));
-   for(int i=23; i<50; i++) {
+   _tests.push_back((VodafoneTestCase*)new Test21(_modem,21));
+   _tests.push_back((VodafoneTestCase*)new Test22(_modem,22));
+   _tests.push_back((VodafoneTestCase*)new Test23(_modem,23));
+   for(int i=24; i<50; i++) {
       _tests.push_back(NULL);
    }
-   _tests.push_back((VodafoneTestCase*)new Test50(_modem, 50));
+   _tests.push_back((VodafoneTestCase*)new Test50(_modem,50));
 }
 
 int TestManager::executeTestList(const int *list, const int listLen) {