-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathglobaltestsuite.h
35 lines (30 loc) · 948 Bytes
/
globaltestsuite.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
/////////////////////////////////////////////////////////////////////////////
// Name: globaltestsuite.h
// Purpose: Performs unit testing on global functions
// Author: Brad Larsen
// Modified by:
// Created: Dec 30, 2004
// RCS-ID:
// Copyright: (c) Brad Larsen
// License: wxWindows license
/////////////////////////////////////////////////////////////////////////////
#ifndef __GLOBALTESTSUITE_H__
#define __GLOBALTESTSUITE_H__
/// Performs unit testing on global functions
class GlobalTestSuite :
public TestSuite
{
DECLARE_DYNAMIC_CLASS(GlobalTestSuite)
// Constructor/Destructor
public:
GlobalTestSuite();
~GlobalTestSuite();
// Overrides
size_t GetTestCount() const;
bool RunTestCases();
// Test Cases
private:
bool TestCasewxExtractSubString();
bool TestCasewxArabicToRoman();
};
#endif