Vodafone Test Suite

Dependencies:   mbed-rtos mbed HTTPClient VodafoneUSBModem

Revision:
3:28336c2e94e4
Parent:
2:ea883307d02f
Child:
4:1f8e079924ba
--- a/TestManager.cpp	Wed Aug 22 13:27:34 2012 +0000
+++ b/TestManager.cpp	Thu Aug 23 13:32:32 2012 +0000
@@ -1,7 +1,8 @@
 #include "TestManager.h"
-#include "ExampleTest.h"
+#include "Tests.h"
 TestManager::TestManager(VodafoneUSBModem *m) : _modem(m) { 
-   _tests.push_back((VodafoneTestCase*)new ExampleTest(_modem));
+   _tests.push_back((VodafoneTestCase*)new Test20(_modem));
+   _tests.push_back((VodafoneTestCase*)new Test50(_modem));
 }
 
 int TestManager::runAll() {