From 33613a85afc4b1481367fbe92a17ee59c240250b Mon Sep 17 00:00:00 2001 From: Sven Eisenhauer Date: Fri, 10 Nov 2023 15:11:48 +0100 Subject: add new repo --- Bachelor/Softwaretechnik2/code/Test.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Bachelor/Softwaretechnik2/code/Test.h (limited to 'Bachelor/Softwaretechnik2/code/Test.h') 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 -- cgit v1.2.3