src/core/test.h
changeset 53 ae406f4957d5
parent 16 99e833adbb46
child 54 f860e6f94787
--- a/src/core/test.h	Tue Sep 05 12:54:53 2006 +0200
+++ b/src/core/test.h	Tue Sep 05 13:13:39 2006 +0200
@@ -38,7 +38,7 @@
 	Test (char const *name);
 	virtual ~Test ();
 
-	virtual bool run_tests (void) = 0;
+	virtual bool runTests (void) = 0;
 
 protected:
 	std::ostream &failure (void);
@@ -48,15 +48,15 @@
 public:
 	// main methods the test runner is supposed to
 	// invoke.
-	static void enable_verbose (void);
-	static bool run_tests (void);
+	static void enableVerbose (void);
+	static bool runTests (void);
 
 	// helper methods
 	static void add (Test *test, char const *name);
 	static std::ostream &failure (void);
 private:
 	static TestManager *get (void);
-	bool real_run_tests (void);
+	bool realRunTests (void);
 
 	TestManager ();
 	~TestManager ();