diff options
Diffstat (limited to 'Bachelor/Softwaretechnik2/code/Test.h')
| -rw-r--r-- | Bachelor/Softwaretechnik2/code/Test.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Bachelor/Softwaretechnik2/code/Test.h b/Bachelor/Softwaretechnik2/code/Test.h new file mode 100644 index 0000000..4958172 --- /dev/null +++ b/Bachelor/Softwaretechnik2/code/Test.h @@ -0,0 +1,16 @@ +#ifndef _TEST__H
+#define _TEST__H
+
+// #include "TestResult.h"
+
+class Test
+{
+public:
+// void run( TestResult& result) = 0;
+ virtual void run() {}
+ virtual void setUp() {}
+ virtual void tearDown() {}
+};
+
+// No Code behind this line!
+#endif
\ No newline at end of file |
