forked from RaptDept/ptparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalternateendingtestsuite.h
42 lines (37 loc) · 1.2 KB
/
alternateendingtestsuite.h
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
36
37
38
39
40
41
42
/////////////////////////////////////////////////////////////////////////////
// Name: alternateendingtestsuite.h
// Purpose: Performs unit testing on the AlternateEnding class
// Author: Brad Larsen
// Modified by:
// Created: Dec 4, 2004
// RCS-ID:
// Copyright: (c) Brad Larsen
// License: wxWindows license
/////////////////////////////////////////////////////////////////////////////
#ifndef __ALTERNATEENDINGTESTSUITE_H__
#define __ALTERNATEENDINGTESTSUITE_H__
/// Performs unit testing on the AlternateEnding class
class AlternateEndingTestSuite :
public TestSuite
{
DECLARE_DYNAMIC_CLASS(AlternateEndingTestSuite)
// Constructor/Destructor
public:
AlternateEndingTestSuite();
~AlternateEndingTestSuite();
// Overrides
size_t GetTestCount() const;
bool RunTestCases();
// Test Case Functions
private:
bool TestCaseConstructor();
bool TestCaseCreation();
bool TestCaseOperator();
bool TestCaseSerialize();
bool TestCaseNumbers();
bool TestCaseDaCapo();
bool TestCaseDalSegno();
bool TestCaseDalSegnoSegno();
bool TestCaseText();
};
#endif