summaryrefslogtreecommitdiff
path: root/examples/cppunittest/TestCallerTest.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cppunittest/TestCallerTest.h')
-rw-r--r--examples/cppunittest/TestCallerTest.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/cppunittest/TestCallerTest.h b/examples/cppunittest/TestCallerTest.h
index d2bcc07..0d8b453 100644
--- a/examples/cppunittest/TestCallerTest.h
+++ b/examples/cppunittest/TestCallerTest.h
@@ -8,7 +8,7 @@
#include "MockTestListener.h"
#include "TrackedTestCase.h"
-class TestCallerTest : public CppUnit::TestFixture,
+class TestCallerTest : public CPPUNIT_NS::TestFixture,
Tracker
{
CPPUNIT_TEST_SUITE( TestCallerTest );
@@ -35,7 +35,7 @@ public:
void testExpectedExceptionNotCaught();
private:
- class ExceptionThrower : public CppUnit::TestCase
+ class ExceptionThrower : public CPPUNIT_NS::TestCase
{
public:
void testThrowFailureException();
@@ -64,7 +64,7 @@ private:
int m_testCount;
const std::string m_testName;
MockTestListener *m_testListener;
- CppUnit::TestResult *m_result;
+ CPPUNIT_NS::TestResult *m_result;
};