Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: mtsas mtsas mtsas mtsas ... more
Diff: TestCollection.h
- 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