-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdev_test.hpp
35 lines (28 loc) · 1.21 KB
/
dev_test.hpp
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
29
30
31
32
33
34
35
/***************************************************************************
tag: Peter Soetens Mon Jan 10 15:59:18 CET 2005 logger_test.hpp
dev_test.hpp - description
-------------------
begin : Mon January 10 2005
copyright : (C) 2005 Peter Soetens
email : [email protected]
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef DEVTEST_H
#define DEVTEST_H
class DevTest
{
public:
DevTest(){ setUp(); };
~DevTest(){ tearDown(); };
void setUp();
void tearDown();
void testClasses();
void testNaming();
};
#endif