Vodafone Test Suite

Dependencies:   mbed-rtos mbed HTTPClient VodafoneUSBModem

Revision:
33:16126e029d58
Parent:
31:9231acdde9ff
Parent:
32:8ff0b67bb58c
Child:
34:d9e45aad85f2
--- a/VodafoneTestCase.h	Wed Sep 12 16:55:00 2012 +0000
+++ b/VodafoneTestCase.h	Thu Sep 13 10:05:31 2012 +0000
@@ -13,7 +13,7 @@
 
 class VodafoneTestCase {
    public:
-      VodafoneTestCase(VodafoneUSBModem *m, int tcNumber) : _modem(m),  _testCaseNumber(tcNumber) , _lastRunTime(0), _lastRunOutcome(false){
+      VodafoneTestCase(VodafoneUSBModem *m) : _modem(m) , _lastRunTime(0), _lastRunOutcome(false) {
       }
       
       bool run() {
@@ -38,9 +38,10 @@
       
    protected:
       VodafoneUSBModem *_modem;
-      const int _testCaseNumber;
+      
    public:
       time_t _lastRunTime;
       bool _lastRunOutcome;
-
+      int _testCaseNumber;
+      const char* _description;
 };
\ No newline at end of file