Vodafone Test Suite

Dependencies:   mbed-rtos mbed HTTPClient VodafoneUSBModem

Committer:
ashleymills
Date:
Thu Sep 06 15:13:38 2012 +0000
Revision:
27:0297dbc3252b
Parent:
26:9eefab9e28df
Child:
33:16126e029d58
Commended out dependency stuff. TestManager now prints numbers and descriptions of failed tests.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ashleymills 20:18373fb68ad7 1 #pragma once
ashleymills 20:18373fb68ad7 2 #include "VodafoneTestCase.h"
ashleymills 27:0297dbc3252b 3
ashleymills 27:0297dbc3252b 4 static const char *gTest23Description = "Sending USSD over 150 chars \"0(0)00 ... 000(160)\"";
ashleymills 27:0297dbc3252b 5 //const int gTest23Depends[] = {};
ashleymills 26:9eefab9e28df 6
ashleymills 20:18373fb68ad7 7 class Test23 : public VodafoneTestCase {
ashleymills 20:18373fb68ad7 8 public:
ashleymills 20:18373fb68ad7 9 Test23(VodafoneUSBModem *m, int tcNumber);
ashleymills 20:18373fb68ad7 10 virtual void setupTest();
ashleymills 20:18373fb68ad7 11 virtual bool runTest();
ashleymills 20:18373fb68ad7 12 virtual void endTest();
ashleymills 20:18373fb68ad7 13
ashleymills 20:18373fb68ad7 14 private:
ashleymills 20:18373fb68ad7 15 char *_ussdResponse;
ashleymills 20:18373fb68ad7 16 };