forked from RaptDept/ptparser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpowertabobjecttestsuite.h
More file actions
35 lines (30 loc) · 1015 Bytes
/
powertabobjecttestsuite.h
File metadata and controls
35 lines (30 loc) · 1015 Bytes
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
/////////////////////////////////////////////////////////////////////////////
// Name: powertabobjecttestsuite.h
// Purpose: Performs unit testing on the PowerTabObject class
// Author: Brad Larsen
// Modified by:
// Created: Dec 24, 2004
// RCS-ID:
// Copyright: (c) Brad Larsen
// License: wxWindows license
/////////////////////////////////////////////////////////////////////////////
#ifndef __POWERTABOBJECTTESTSUITE_H__
#define __POWERTABOBJECTTESTSUITE_H__
/// Performs unit testing on the PowerTabObject class
class PowerTabObjectTestSuite :
public TestSuite
{
DECLARE_DYNAMIC_CLASS(PowerTabObjectTestSuite)
// Constructor/Destructor
public:
PowerTabObjectTestSuite();
~PowerTabObjectTestSuite();
// Overrides
size_t GetTestCount() const;
bool RunTestCases();
// Test Cases
private:
bool TestCaseCreateObject();
bool TestCaseMFCClassInformation();
};
#endif