Lines Matching refs:TestClass

16 template <class TestClass, class ExpectedException = CppUnit::NoExceptionExpected>
22 typedef void (TestClass::*ThreadMethod)();
25 BThreadedTestCaller(std::string name, TestClass &object);
26 BThreadedTestCaller(std::string name, TestClass *object);
40 typedef std::map<std::string, BThreadManager<TestClass, ExpectedException> *> ThreadManagerMap;
43 TestClass *fObject;
51 template <class TestClass, class ExpectedException>
52 BThreadedTestCaller<TestClass, ExpectedException>::BThreadedTestCaller(std::string name) in BThreadedTestCaller()
55 , fObject(new TestClass()) in BThreadedTestCaller()
60 template <class TestClass, class ExpectedException>
61 BThreadedTestCaller<TestClass, ExpectedException>::BThreadedTestCaller(std::string name, TestClass in BThreadedTestCaller()
69 template <class TestClass, class ExpectedException>
70 BThreadedTestCaller<TestClass, ExpectedException>::BThreadedTestCaller(std::string name, TestClass in BThreadedTestCaller()
78 template <class TestClass, class ExpectedException>
79 BThreadedTestCaller<TestClass, ExpectedException>::~BThreadedTestCaller() { in ~BThreadedTestCaller()
88 template <class TestClass, class ExpectedException>
90 BThreadedTestCaller<TestClass, ExpectedException>::addThread(std::string threadName, ThreadMethod m… in addThread()
93 …fThreads[threadName] = new BThreadManager<TestClass, ExpectedException>(threadName, fObject, metho… in addThread()
101 template <class TestClass, class ExpectedException>
103 BThreadedTestCaller<TestClass, ExpectedException>::run() { in run()
109 template <class TestClass, class ExpectedException>
111 BThreadedTestCaller<TestClass, ExpectedException>::run(CppUnit::TestResult *result) { in run()
248 template <class TestClass, class ExpectedException>
250 BThreadedTestCaller<TestClass, ExpectedException>::setUp() { in setUp()
260 template <class TestClass, class ExpectedException>
262 BThreadedTestCaller<TestClass, ExpectedException>::tearDown() { in tearDown()
266 template <class TestClass, class ExpectedException>
268 BThreadedTestCaller<TestClass, ExpectedException>::toString() const { in toString()