MultiTech / MTS-Test

Dependents:   mtsas mtsas mtsas mtsas ... more

Revision:
1:42d2b6980cdd
Parent:
0:e002468be03b
Child:
11:0930606c0186
diff -r e002468be03b -r 42d2b6980cdd TestCollection.h
--- a/TestCollection.h	Mon May 19 14:13:02 2014 +0000
+++ b/TestCollection.h	Mon May 19 11:02:48 2014 -0500
@@ -1,4 +1,38 @@
 #ifndef TESTCOLLECTION_H
 #define TESTCOLLECTION_H
 
-#endif
\ No newline at end of file
+#include <string>
+
+namespace mts
+{
+
+/**
+*
+*/
+class TestCollection
+{
+public:
+    /**
+    *
+    */
+    TestCollection(std::string testName);
+
+    /**
+    *
+    */
+    ~TestCollection();
+    
+    /**
+    *
+    */
+    std::string getName();
+    
+    virtual void run() = 0;
+
+private:
+    std::string testName;
+};
+
+}
+
+#endif