--- a/samples/main-test.cc Tue Oct 03 12:21:13 2006 +0200
+++ b/samples/main-test.cc Fri Oct 06 13:37:25 2006 +0200
@@ -11,7 +11,7 @@
public:
MyTest (bool ok);
virtual ~MyTest ();
- virtual bool runTests (void);
+ virtual bool RunTests (void);
private:
bool m_ok;
};
@@ -24,7 +24,7 @@
MyTest::~MyTest ()
{}
bool
-MyTest::runTests (void)
+MyTest::RunTests (void)
{
return m_ok;
}
@@ -37,7 +37,7 @@
int main (int argc, char *argv[])
{
// run tests
- TestManager::enableVerbose ();
- TestManager::runTests ();
+ TestManager::EnableVerbose ();
+ TestManager::RunTests ();
return 0;
}