Vodafone Test Suite

Dependencies:   mbed-rtos mbed HTTPClient VodafoneUSBModem

Revision:
26:9eefab9e28df
Parent:
25:55b865c41f21
Child:
27:0297dbc3252b
--- a/Tests/Tests.h	Thu Sep 06 13:35:25 2012 +0000
+++ b/Tests/Tests.h	Thu Sep 06 14:28:01 2012 +0000
@@ -9,14 +9,14 @@
 #include "Test26.h"
 #include "Test50.h"
 
-static const int gAllTests[] = {10,12,13,21,22,23,25,26,50};
-static const int gNumAllTests = 9;
-static const int gAutomatedTests[] = {10,21,22,23,25,26};
-static const int gNumAutomatedTests = 6;
-static const int gInteractiveTests[] = {12,13};
-static const int gNumInteractiveTests = 2;
-static const int gSoakTests[] = {50};
-static const int gNumSoakTests = 1;
+const int gAllTests[] = {10,12,13,21,22,23,25,26,50};
+const int gNumAllTests = 9;
+const int gAutomatedTests[] = {10,21,22,23,25,26};
+const int gNumAutomatedTests = 6;
+const int gInteractiveTests[] = {12,13};
+const int gNumInteractiveTests = 2;
+const int gSoakTests[] = {50};
+const int gNumSoakTests = 1;
 
 enum TestProfile {
    TESTS_ALL,
@@ -27,13 +27,12 @@
 };
 
 static const int* gTestProfiles[4] = {
-   (const int*)&gAllTests,
-   (const int*)&gAutomatedTests,
-   (const int*)&gInteractiveTests,
-   (const int*)&gSoakTests
+   gAllTests,
+   gAutomatedTests,
+   gInteractiveTests,
+   gSoakTests
 };
 
-
 static const int gTestProfileLengths[4] = {
    gNumAllTests,
    gNumAutomatedTests,
@@ -43,5 +42,22 @@
 
 static const char* gTestDescriptions[] = {
    gTest10Description,
-   gTest12Description
+   gTest12Description, 
+   gTest21Description,
+   gTest22Description,
+   gTest25Description,
+   gTest26Description,
+   gTest50Description,
+};
+
+static const int* gTestDependencies[] = {
+   gTest10Depends,
+   gTest12Depends,
+   gTest13Depends,
+   gTest21Depends,
+   gTest22Depends,
+   gTest23Depends,
+   gTest25Depends,
+   gTest26Depends,
+   gTest50Depends
 };
\ No newline at end of file