summaryrefslogtreecommitdiffstats
path: root/Bachelor/Softwaretechnik2/mixer/Test.h
diff options
context:
space:
mode:
authorSven Eisenhauer <sven@sven-eisenhauer.net>2023-11-10 15:11:48 +0100
committerSven Eisenhauer <sven@sven-eisenhauer.net>2023-11-10 15:11:48 +0100
commit33613a85afc4b1481367fbe92a17ee59c240250b (patch)
tree670b842326116b376b505ec2263878912fca97e2 /Bachelor/Softwaretechnik2/mixer/Test.h
downloadStudium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.gz
Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.bz2
add new repoHEADmaster
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