Vodafone Test Suite

Dependencies:   mbed-rtos mbed HTTPClient VodafoneUSBModem

Committer:
ashleymills
Date:
Thu Sep 13 10:05:31 2012 +0000
Revision:
33:16126e029d58
Parent:
27:0297dbc3252b
Child:
34:d9e45aad85f2
Changed test framework.

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 33:16126e029d58 9 Test23(VodafoneUSBModem *m);
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 };