summaryrefslogtreecommitdiffstats
path: root/Bachelor/Softwaretechnik2/mixer/Test.h
diff options
context:
space:
mode:
Diffstat (limited to 'Bachelor/Softwaretechnik2/mixer/Test.h')
-rw-r--r--Bachelor/Softwaretechnik2/mixer/Test.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/Bachelor/Softwaretechnik2/mixer/Test.h b/Bachelor/Softwaretechnik2/mixer/Test.h
new file mode 100644
index 0000000..4958172
--- /dev/null
+++ b/Bachelor/Softwaretechnik2/mixer/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