blob: c532443cbb1f99939e93fd2e8c6632cde074209a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*
* TestSuite.h
*
* Created on: Nov 4, 2012
* Author: attero
*/
#ifndef TESTSUITE_H_
#define TESTSUITE_H_
#include <string>
#include "minunit.h"
#include <iostream>
class TestSuite {
public:
int tests_passed;
int tests_failed;
int tests;
void run_tests();
virtual std::string all_tests();
TestSuite();
virtual ~TestSuite();
};
#endif /* TESTSUITE_H_ */
|