summaryrefslogtreecommitdiff
path: root/examples/cppunittest/MockTestCase.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cppunittest/MockTestCase.cpp')
-rw-r--r--examples/cppunittest/MockTestCase.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/cppunittest/MockTestCase.cpp b/examples/cppunittest/MockTestCase.cpp
index e6bc335..9f7c2f6 100644
--- a/examples/cppunittest/MockTestCase.cpp
+++ b/examples/cppunittest/MockTestCase.cpp
@@ -4,7 +4,7 @@
MockTestCase::MockTestCase( std::string name )
- : CppUnit::TestCase( name )
+ : CPPUNIT_NS::TestCase( name )
, m_hasSetUpExpectation( false )
, m_expectedSetUpCall( 0 )
, m_actualSetUpCall( 0 )
@@ -90,8 +90,8 @@ MockTestCase::runTest()
/*
bool
-MockTestCase::findTestPath( const CppUnit::Test *test,
- CppUnit::TestPath &testPath )
+MockTestCase::findTestPath( const CPPUNIT_NS::Test *test,
+ CPPUNIT_NS::TestPath &testPath )
{
if ( m_passingTest == test )
{