Vodafone Test Suite

Dependencies:   mbed-rtos mbed HTTPClient VodafoneUSBModem

Committer:
ashleymills
Date:
Wed Aug 22 10:17:54 2012 +0000
Revision:
1:0d63e4db8503
Child:
2:ea883307d02f
Added basic test framework

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ashleymills 1:0d63e4db8503 1 #pragma once
ashleymills 1:0d63e4db8503 2 #include "VodafoneUSBModem.h"
ashleymills 1:0d63e4db8503 3 class VodafoneTestCase {
ashleymills 1:0d63e4db8503 4 public:
ashleymills 1:0d63e4db8503 5 VodafoneTestCase(VodafoneUSBModem *m) : _modem(m) {
ashleymills 1:0d63e4db8503 6
ashleymills 1:0d63e4db8503 7 }
ashleymills 1:0d63e4db8503 8
ashleymills 1:0d63e4db8503 9 virtual bool runTest() {}
ashleymills 1:0d63e4db8503 10
ashleymills 1:0d63e4db8503 11 protected:
ashleymills 1:0d63e4db8503 12 VodafoneUSBModem *_modem;
ashleymills 1:0d63e4db8503 13
ashleymills 1:0d63e4db8503 14 };