summaryrefslogtreecommitdiffstats
path: root/Bachelor/Softwaretechnik2/mixer/Test.h
blob: 49581721bbd1f45b1fe432c33fdd626c3bfd6023 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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