Skip to content

Commit 52dedbf

Browse files
committed
GIT: Copy cxxtest modifications from ScummVM's main repository
1 parent 1756dc0 commit 52dedbf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+264
-265
lines changed

decompiler/test/cxxtest/README

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Its advantages over existing alternatives are that it:
77
- Doesn't require RTTI
88
- Doesn't require member template functions
99
- Doesn't require exception handling
10-
- Doesn't require any external libraries (including memory management,
10+
- Doesn't require any external libraries (including memory management,
1111
file/console I/O, graphics libraries)
1212

1313
This makes it extremely portable and usable.
@@ -23,7 +23,7 @@ Simple user's guide
2323
MyTest.h:
2424
#include <cxxtest/TestSuite.h>
2525

26-
class MyTestSuite : public CxxTest::TestSuite
26+
class MyTestSuite : public CxxTest::TestSuite
2727
{
2828
public:
2929
void testAddition( void )

decompiler/test/cxxtest/cxxtest/Descriptions.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace CxxTest
88
TestDescription::~TestDescription() {}
99
SuiteDescription::~SuiteDescription() {}
1010
WorldDescription::~WorldDescription() {}
11-
11+
1212
//
1313
// Convert total tests to string
1414
//
@@ -53,6 +53,6 @@ namespace CxxTest
5353
return s;
5454
}
5555
#endif // _CXXTEST_FACTOR
56-
};
56+
}
5757

5858
#endif // __cxxtest__Descriptions_cpp__

decompiler/test/cxxtest/cxxtest/Descriptions.h

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,36 +8,36 @@
88

99
#include <cxxtest/LinkedList.h>
1010

11-
namespace CxxTest
11+
namespace CxxTest
1212
{
1313
class TestSuite;
1414

1515
class TestDescription : public Link
1616
{
1717
public:
1818
virtual ~TestDescription();
19-
19+
2020
virtual const char *file() const = 0;
2121
virtual unsigned line() const = 0;
2222
virtual const char *testName() const = 0;
2323
virtual const char *suiteName() const = 0;
24-
24+
2525
virtual void run() = 0;
2626

2727
virtual const TestDescription *next() const = 0;
28-
virtual TestDescription *next() = 0;
28+
virtual TestDescription *next() = 0;
2929
};
3030

3131
class SuiteDescription : public Link
3232
{
3333
public:
3434
virtual ~SuiteDescription();
35-
35+
3636
virtual const char *file() const = 0;
3737
virtual unsigned line() const = 0;
3838
virtual const char *suiteName() const = 0;
3939
virtual TestSuite *suite() const = 0;
40-
40+
4141
virtual unsigned numTests() const = 0;
4242
virtual const TestDescription &testDescription( unsigned /*i*/ ) const = 0;
4343

@@ -54,7 +54,7 @@ namespace CxxTest
5454
{
5555
public:
5656
virtual ~WorldDescription();
57-
57+
5858
virtual unsigned numSuites( void ) const = 0;
5959
virtual unsigned numTotalTests( void ) const = 0;
6060
virtual const SuiteDescription &suiteDescription( unsigned /*i*/ ) const = 0;

decompiler/test/cxxtest/cxxtest/DummyDescriptions.cpp

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#include <cxxtest/DummyDescriptions.h>
22

3-
namespace CxxTest
3+
namespace CxxTest
44
{
55
DummyTestDescription::DummyTestDescription() {}
6-
6+
77
const char *DummyTestDescription::file() const { return "<no file>"; }
88
unsigned DummyTestDescription::line() const { return 0; }
99
const char *DummyTestDescription::testName() const { return "<no test>"; }
@@ -14,9 +14,9 @@ namespace CxxTest
1414

1515
TestDescription *DummyTestDescription::next() { return 0; }
1616
const TestDescription *DummyTestDescription::next() const { return 0; }
17-
17+
1818
DummySuiteDescription::DummySuiteDescription() : _test() {}
19-
19+
2020
const char *DummySuiteDescription::file() const { return "<no file>"; }
2121
unsigned DummySuiteDescription::line() const { return 0; }
2222
const char *DummySuiteDescription::suiteName() const { return "<no suite>"; }
@@ -29,20 +29,20 @@ namespace CxxTest
2929
const TestDescription *DummySuiteDescription::firstTest() const { return 0; }
3030
void DummySuiteDescription::activateAllTests() {}
3131
bool DummySuiteDescription::leaveOnly( const char * /*testName*/ ) { return false; }
32-
32+
3333
bool DummySuiteDescription::setUp() { return true;}
3434
bool DummySuiteDescription::tearDown() { return true;}
3535

3636
DummyWorldDescription::DummyWorldDescription() : _suite() {}
37-
37+
3838
unsigned DummyWorldDescription::numSuites( void ) const { return 0; }
3939
unsigned DummyWorldDescription::numTotalTests( void ) const { return 0; }
4040
const SuiteDescription &DummyWorldDescription::suiteDescription( unsigned ) const { return _suite; }
4141
SuiteDescription *DummyWorldDescription::firstSuite() { return 0; }
4242
const SuiteDescription *DummyWorldDescription::firstSuite() const { return 0; }
4343
void DummyWorldDescription::activateAllTests() {}
4444
bool DummyWorldDescription::leaveOnly( const char * /*suiteName*/, const char * /*testName*/ ) { return false; }
45-
45+
4646
bool DummyWorldDescription::setUp() { return true;}
4747
bool DummyWorldDescription::tearDown() { return true;}
4848
}

decompiler/test/cxxtest/cxxtest/DummyDescriptions.h

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77

88
#include <cxxtest/Descriptions.h>
99

10-
namespace CxxTest
10+
namespace CxxTest
1111
{
1212
class DummyTestDescription : public TestDescription
1313
{
1414
public:
1515
DummyTestDescription();
16-
16+
1717
const char *file() const;
1818
unsigned line() const;
1919
const char *testName() const;
@@ -27,10 +27,10 @@ namespace CxxTest
2727
};
2828

2929
class DummySuiteDescription : public SuiteDescription
30-
{
30+
{
3131
public:
3232
DummySuiteDescription();
33-
33+
3434
const char *file() const;
3535
unsigned line() const;
3636
const char *suiteName() const;
@@ -43,7 +43,7 @@ namespace CxxTest
4343
const TestDescription *firstTest() const;
4444
void activateAllTests();
4545
bool leaveOnly( const char * /*testName*/ );
46-
46+
4747
bool setUp();
4848
bool tearDown();
4949

@@ -55,15 +55,15 @@ namespace CxxTest
5555
{
5656
public:
5757
DummyWorldDescription();
58-
58+
5959
unsigned numSuites( void ) const;
6060
unsigned numTotalTests( void ) const;
6161
const SuiteDescription &suiteDescription( unsigned ) const;
6262
SuiteDescription *firstSuite();
6363
const SuiteDescription *firstSuite() const;
6464
void activateAllTests();
6565
bool leaveOnly( const char * /*suiteName*/, const char * /*testName*/ = 0 );
66-
66+
6767
bool setUp();
6868
bool tearDown();
6969

decompiler/test/cxxtest/cxxtest/ErrorFormatter.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ namespace CxxTest
2020
{
2121
public:
2222
virtual ~OutputStream() {}
23-
virtual void flush() {};
23+
virtual void flush() {}
2424
virtual OutputStream &operator<<( unsigned /*number*/ ) { return *this; }
2525
virtual OutputStream &operator<<( const char * /*string*/ ) { return *this; }
2626

2727
typedef void (*Manipulator)( OutputStream & );
28-
28+
2929
virtual OutputStream &operator<<( Manipulator m ) { m( *this ); return *this; }
3030
static void endl( OutputStream &o ) { (o << "\n").flush(); }
3131
};
@@ -213,7 +213,7 @@ namespace CxxTest
213213
private:
214214
ErrorFormatter( const ErrorFormatter & );
215215
ErrorFormatter &operator=( const ErrorFormatter & );
216-
216+
217217
OutputStream &stop( const char *file, unsigned line )
218218
{
219219
newLine();
@@ -249,7 +249,7 @@ namespace CxxTest
249249
{
250250
(*_o) << " (null)" << endl;
251251
}
252-
252+
253253
void dumpBuffer( const void *buffer, unsigned size )
254254
{
255255
unsigned dumpSize = size;
@@ -276,6 +276,6 @@ namespace CxxTest
276276
const char *_preLine;
277277
const char *_postLine;
278278
};
279-
};
279+
}
280280

281281
#endif // __cxxtest__ErrorFormatter_h__

decompiler/test/cxxtest/cxxtest/ErrorPrinter.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# include <iostream>
2424
#endif // _CXXTEST_OLD_STD
2525

26-
namespace CxxTest
26+
namespace CxxTest
2727
{
2828
class ErrorPrinter : public ErrorFormatter
2929
{

decompiler/test/cxxtest/cxxtest/GlobalFixture.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33

44
#include <cxxtest/GlobalFixture.h>
55

6-
namespace CxxTest
6+
namespace CxxTest
77
{
88
bool GlobalFixture::setUpWorld() { return true; }
99
bool GlobalFixture::tearDownWorld() { return true; }
1010
bool GlobalFixture::setUp() { return true; }
1111
bool GlobalFixture::tearDown() { return true; }
12-
12+
1313
GlobalFixture::GlobalFixture() { attach( _list ); }
1414
GlobalFixture::~GlobalFixture() { detach( _list ); }
15-
15+
1616
GlobalFixture *GlobalFixture::firstGlobalFixture() { return (GlobalFixture *)_list.head(); }
1717
GlobalFixture *GlobalFixture::lastGlobalFixture() { return (GlobalFixture *)_list.tail(); }
1818
GlobalFixture *GlobalFixture::nextGlobalFixture() { return (GlobalFixture *)next(); }

decompiler/test/cxxtest/cxxtest/GlobalFixture.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include <cxxtest/LinkedList.h>
55

6-
namespace CxxTest
6+
namespace CxxTest
77
{
88
class GlobalFixture : public Link
99
{
@@ -12,10 +12,10 @@ namespace CxxTest
1212
virtual bool tearDownWorld();
1313
virtual bool setUp();
1414
virtual bool tearDown();
15-
15+
1616
GlobalFixture();
1717
~GlobalFixture();
18-
18+
1919
static GlobalFixture *firstGlobalFixture();
2020
static GlobalFixture *lastGlobalFixture();
2121
GlobalFixture *nextGlobalFixture();

0 commit comments

Comments
 (0)