Vodafone Test Suite

Dependencies:   mbed-rtos mbed HTTPClient VodafoneUSBModem

Committer:
ashleymills
Date:
Wed Sep 05 16:38:06 2012 +0000
Revision:
23:408199b5d2cb
Parent:
22:5b1feecf2aeb
Child:
24:8f0f9551122a
Child:
28:c630a04a7198
Added internet test.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ashleymills 3:28336c2e94e4 1 #pragma once
ashleymills 23:408199b5d2cb 2 #include "Test10.h"
nherriot 7:ec0db221f897 3 #include "Test12.h"
nherriot 16:c89d426c6175 4 #include "Test13.h"
ashleymills 19:26fbed33d4e7 5 #include "Test21.h"
ashleymills 19:26fbed33d4e7 6 #include "Test22.h"
ashleymills 20:18373fb68ad7 7 #include "Test23.h"
ashleymills 22:5b1feecf2aeb 8 #include "Test25.h"
ashleymills 22:5b1feecf2aeb 9 #include "Test26.h"
ashleymills 19:26fbed33d4e7 10 #include "Test50.h"
ashleymills 19:26fbed33d4e7 11
ashleymills 23:408199b5d2cb 12 static const int gAllTests[] = {10,12,13,21,22,23,25,26,50};
ashleymills 23:408199b5d2cb 13 static const int gNumAllTests = 9;
ashleymills 23:408199b5d2cb 14 static const int gAutomatedTests[] = {10,21,22,23,25,26};
ashleymills 23:408199b5d2cb 15 static const int gNumAutomatedTests = 6;
ashleymills 23:408199b5d2cb 16 static const int gInteractiveTests[] = {12,13};
ashleymills 23:408199b5d2cb 17 static const int gNumInteractiveTests = 2;
ashleymills 22:5b1feecf2aeb 18 static const int gSoakTests[] = {50};
ashleymills 22:5b1feecf2aeb 19 static const int gNumSoakTests = 1;
ashleymills 22:5b1feecf2aeb 20
ashleymills 22:5b1feecf2aeb 21 enum TestProfile {
ashleymills 22:5b1feecf2aeb 22 TESTS_ALL,
ashleymills 22:5b1feecf2aeb 23 TESTS_AUTOMATED,
ashleymills 22:5b1feecf2aeb 24 TESTS_MANUAL,
ashleymills 22:5b1feecf2aeb 25 TESTS_SOAK,
ashleymills 22:5b1feecf2aeb 26 TESTS_END
ashleymills 22:5b1feecf2aeb 27 };
ashleymills 22:5b1feecf2aeb 28
ashleymills 22:5b1feecf2aeb 29 static const int* gTestProfiles[4] = {
ashleymills 22:5b1feecf2aeb 30 (const int*)&gAllTests,
ashleymills 22:5b1feecf2aeb 31 (const int*)&gAutomatedTests,
ashleymills 22:5b1feecf2aeb 32 (const int*)&gInteractiveTests,
ashleymills 22:5b1feecf2aeb 33 (const int*)&gSoakTests
ashleymills 22:5b1feecf2aeb 34 };
ashleymills 22:5b1feecf2aeb 35
ashleymills 23:408199b5d2cb 36
ashleymills 22:5b1feecf2aeb 37 static const int gTestProfileLengths[4] = {
ashleymills 22:5b1feecf2aeb 38 gNumAllTests,
ashleymills 22:5b1feecf2aeb 39 gNumAutomatedTests,
ashleymills 22:5b1feecf2aeb 40 gNumInteractiveTests,
ashleymills 22:5b1feecf2aeb 41 gNumSoakTests
ashleymills 22:5b1feecf2aeb 42 };