Symbol: TestClass
headers/tools/cppunit/ThreadManager.h
106
template <class TestClass, class ExpectedException>
headers/tools/cppunit/ThreadManager.h
108
BThreadManager<TestClass, ExpectedException>::LaunchThread(CppUnit::TestResult *result) {
headers/tools/cppunit/ThreadManager.h
130
template <class TestClass, class ExpectedException>
headers/tools/cppunit/ThreadManager.h
132
BThreadManager<TestClass, ExpectedException>::EntryFunction(BThreadManager<TestClass, ExpectedException> *manager) {
headers/tools/cppunit/ThreadManager.h
137
template <class TestClass, class ExpectedException>
headers/tools/cppunit/ThreadManager.h
139
BThreadManager<TestClass, ExpectedException>::Run(void) {
headers/tools/cppunit/ThreadManager.h
15
template <class TestClass, class ExpectedException>
headers/tools/cppunit/ThreadManager.h
18
typedef void (TestClass::*ThreadMethod)();
headers/tools/cppunit/ThreadManager.h
20
BThreadManager(std::string threadName, TestClass *object, ThreadMethod method, sem_id &threadSem);
headers/tools/cppunit/ThreadManager.h
34
TestClass *fObject;
headers/tools/cppunit/ThreadManager.h
40
static long EntryFunction(BThreadManager<TestClass, ExpectedException>* manager);
headers/tools/cppunit/ThreadManager.h
45
template <class TestClass, class ExpectedException>
headers/tools/cppunit/ThreadManager.h
46
BThreadManager<TestClass, ExpectedException>::BThreadManager(
headers/tools/cppunit/ThreadManager.h
48
TestClass *object,
headers/tools/cppunit/ThreadManager.h
62
template <class TestClass, class ExpectedException>
headers/tools/cppunit/ThreadManager.h
63
BThreadManager<TestClass, ExpectedException>::~BThreadManager() {
headers/tools/cppunit/ThreadManager.h
68
template <class TestClass, class ExpectedException>
headers/tools/cppunit/ThreadManager.h
70
BThreadManager<TestClass, ExpectedException>::WaitForThread() {
headers/tools/cppunit/ThreadManager.h
77
template <class TestClass, class ExpectedException>
headers/tools/cppunit/ThreadManager.h
79
BThreadManager<TestClass, ExpectedException>::Stop() {
headers/tools/cppunit/ThreadManager.h
92
template <class TestClass, class ExpectedException>
headers/tools/cppunit/ThreadManager.h
94
BThreadManager<TestClass, ExpectedException>::IsRunning(void) {
headers/tools/cppunit/ThreadedTestCaller.h
103
template <class TestClass, class ExpectedException>
headers/tools/cppunit/ThreadedTestCaller.h
105
BThreadedTestCaller<TestClass, ExpectedException>::run() {
headers/tools/cppunit/ThreadedTestCaller.h
111
template <class TestClass, class ExpectedException>
headers/tools/cppunit/ThreadedTestCaller.h
113
BThreadedTestCaller<TestClass, ExpectedException>::run(CppUnit::TestResult *result) {
headers/tools/cppunit/ThreadedTestCaller.h
18
template <class TestClass, class ExpectedException = CppUnit::NoExceptionExpected>
headers/tools/cppunit/ThreadedTestCaller.h
24
typedef void (TestClass::*ThreadMethod)();
headers/tools/cppunit/ThreadedTestCaller.h
250
template <class TestClass, class ExpectedException>
headers/tools/cppunit/ThreadedTestCaller.h
252
BThreadedTestCaller<TestClass, ExpectedException>::setUp() {
headers/tools/cppunit/ThreadedTestCaller.h
262
template <class TestClass, class ExpectedException>
headers/tools/cppunit/ThreadedTestCaller.h
264
BThreadedTestCaller<TestClass, ExpectedException>::tearDown() {
headers/tools/cppunit/ThreadedTestCaller.h
268
template <class TestClass, class ExpectedException>
headers/tools/cppunit/ThreadedTestCaller.h
27
BThreadedTestCaller(std::string name, TestClass &object);
headers/tools/cppunit/ThreadedTestCaller.h
270
BThreadedTestCaller<TestClass, ExpectedException>::toString() const {
headers/tools/cppunit/ThreadedTestCaller.h
28
BThreadedTestCaller(std::string name, TestClass *object);
headers/tools/cppunit/ThreadedTestCaller.h
45
TestClass *fObject;
headers/tools/cppunit/ThreadedTestCaller.h
53
template <class TestClass, class ExpectedException>
headers/tools/cppunit/ThreadedTestCaller.h
54
BThreadedTestCaller<TestClass, ExpectedException>::BThreadedTestCaller(std::string name)
headers/tools/cppunit/ThreadedTestCaller.h
57
, fObject(new TestClass())
headers/tools/cppunit/ThreadedTestCaller.h
62
template <class TestClass, class ExpectedException>
headers/tools/cppunit/ThreadedTestCaller.h
63
BThreadedTestCaller<TestClass, ExpectedException>::BThreadedTestCaller(std::string name, TestClass &object)
headers/tools/cppunit/ThreadedTestCaller.h
71
template <class TestClass, class ExpectedException>
headers/tools/cppunit/ThreadedTestCaller.h
72
BThreadedTestCaller<TestClass, ExpectedException>::BThreadedTestCaller(std::string name, TestClass *object)
headers/tools/cppunit/ThreadedTestCaller.h
80
template <class TestClass, class ExpectedException>
headers/tools/cppunit/ThreadedTestCaller.h
81
BThreadedTestCaller<TestClass, ExpectedException>::~BThreadedTestCaller() {
headers/tools/cppunit/ThreadedTestCaller.h
90
template <class TestClass, class ExpectedException>
headers/tools/cppunit/ThreadedTestCaller.h
92
BThreadedTestCaller<TestClass, ExpectedException>::addThread(std::string threadName, ThreadMethod method) {
headers/tools/cppunit/ThreadedTestCaller.h
95
fThreads[threadName] = new BThreadManager<TestClass, ExpectedException>(threadName, fObject, method, fThreadSem);
src/tests/system/kernel/unit/Test.h
102
template<typename TestClass>
src/tests/system/kernel/unit/Test.h
104
StandardTest<TestClass>::Cleanup(TestContext& context, bool setupOK)
src/tests/system/kernel/unit/Test.h
50
template<typename TestClass>
src/tests/system/kernel/unit/Test.h
54
TestClass* object,
src/tests/system/kernel/unit/Test.h
55
bool (TestClass::*method)(TestContext&));
src/tests/system/kernel/unit/Test.h
63
TestClass* fObject;
src/tests/system/kernel/unit/Test.h
64
bool (TestClass::*fMethod)(TestContext&);
src/tests/system/kernel/unit/Test.h
68
template<typename TestClass>
src/tests/system/kernel/unit/Test.h
69
StandardTest<TestClass>::StandardTest(const char* name, TestClass* object,
src/tests/system/kernel/unit/Test.h
70
bool (TestClass::*method)(TestContext&))
src/tests/system/kernel/unit/Test.h
79
template<typename TestClass>
src/tests/system/kernel/unit/Test.h
80
StandardTest<TestClass>::~StandardTest()
src/tests/system/kernel/unit/Test.h
86
template<typename TestClass>
src/tests/system/kernel/unit/Test.h
88
StandardTest<TestClass>::Setup(TestContext& context)
src/tests/system/kernel/unit/Test.h
94
template<typename TestClass>
src/tests/system/kernel/unit/Test.h
96
StandardTest<TestClass>::Run(TestContext& context)
src/tests/system/kernel/util/VectorMapTest.cpp
575
typedef typename TestStrategy::TestClass TestClass;
src/tests/system/kernel/util/VectorMapTest.cpp
577
typedef typename TestClass::Iterator Iterator;
src/tests/system/kernel/util/VectorMapTest.cpp
578
typedef typename TestClass::ConstIterator ConstIterator;
src/tests/system/kernel/util/VectorMapTest.cpp
583
TestClass v;
src/tests/system/kernel/util/VectorMapTest.cpp
595
TestClass v;
src/tests/system/kernel/util/VectorMapTest.cpp
607
TestClass v;
src/tests/system/kernel/util/VectorMapTest.cpp
609
const TestClass& cv = v;
src/tests/system/kernel/util/VectorMapTest.cpp
620
void Fill(TestClass& v, EntryStrategy strategy, int32 maxNumber)
src/tests/system/kernel/util/VectorMapTest.cpp
638
TestClass v;
src/tests/system/kernel/util/VectorMapTest.cpp
651
TestClass v;
src/tests/system/kernel/util/VectorMapTest.cpp
662
TestClass v;
src/tests/system/kernel/util/VectorMapTest.cpp
672
TestClass v;
src/tests/system/kernel/util/VectorMapTest.cpp
674
const TestClass& cv = v;
src/tests/system/kernel/util/VectorMapTest.cpp
704
TestClass v;
src/tests/system/kernel/util/VectorMapTest.cpp
706
const TestClass& cv = v;
src/tests/system/kernel/util/VectorMapTest.cpp
754
TestClass v;
src/tests/system/kernel/util/VectorMapTest.cpp
756
const TestClass& cv = v;
src/tests/system/kernel/util/VectorSetTest.cpp
467
typedef typename TestStrategy::TestClass TestClass;
src/tests/system/kernel/util/VectorSetTest.cpp
468
typedef typename TestClass::Iterator Iterator;
src/tests/system/kernel/util/VectorSetTest.cpp
469
typedef typename TestClass::ConstIterator ConstIterator;
src/tests/system/kernel/util/VectorSetTest.cpp
474
TestClass v;
src/tests/system/kernel/util/VectorSetTest.cpp
479
void Fill(TestClass& v, ValueStrategy strategy, int32 maxNumber)
src/tests/system/kernel/util/VectorSetTest.cpp
491
TestClass v;
src/tests/system/kernel/util/VectorSetTest.cpp
504
TestClass v;
src/tests/system/kernel/util/VectorSetTest.cpp
515
TestClass v;
src/tests/system/kernel/util/VectorSetTest.cpp
525
TestClass v;
src/tests/system/kernel/util/VectorSetTest.cpp
527
const TestClass& cv = v;
src/tests/system/kernel/util/VectorSetTest.cpp
548
TestClass v;
src/tests/system/kernel/util/VectorSetTest.cpp
550
const TestClass& cv = v;
src/tests/system/kernel/util/VectorSetTest.cpp
584
TestClass v;
src/tests/system/kernel/util/VectorSetTest.cpp
586
const TestClass& cv = v;
src/tests/system/kernel/util/VectorTest.cpp
555
typedef typename TestStrategy::TestClass TestClass;
src/tests/system/kernel/util/VectorTest.cpp
559
TestClass v;
src/tests/system/kernel/util/VectorTest.cpp
573
TestClass v;
src/tests/system/kernel/util/VectorTest.cpp
587
TestClass v;
src/tests/system/kernel/util/VectorTest.cpp
596
TestClass v;
src/tests/system/kernel/util/VectorTest.cpp
603
void Fill(TestClass& v, ValueStrategy strategy, int32 maxNumber)
src/tests/system/kernel/util/VectorTest.cpp
616
TestClass v;
src/tests/system/kernel/util/VectorTest.cpp
628
TestClass v;
src/tests/system/kernel/util/VectorTest.cpp
638
TestClass v;
src/tests/system/kernel/util/VectorTest.cpp
648
TestClass v;
src/tests/system/kernel/util/VectorTest.cpp
657
TestClass v;
src/tests/system/kernel/util/VectorTest.cpp
659
const TestClass& cv = v;
src/tests/system/kernel/util/VectorTest.cpp
668
TestClass v;
src/tests/system/kernel/util/VectorTest.cpp
671
const TestClass& cv = v;
src/tests/system/kernel/util/VectorTest.cpp
673
typename TestClass::ConstIterator cit = cv.Begin();
src/tests/system/kernel/util/VectorTest.cpp
675
for (typename TestClass::Iterator it = v.Begin(); it != v.End();) {
src/tests/system/kernel/util/VectorTest.cpp
687
typename TestClass::Iterator it = v.Find(value);
src/tests/system/kernel/util/VectorTest.cpp
688
typename TestClass::ConstIterator cit = cv.Find(value);
src/tests/system/kernel/util/VectorTest.cpp
696
TestClass v;
src/tests/system/kernel/util/VectorTest.cpp
698
const TestClass& cv = v;
src/tests/system/kernel/util/VectorTest.cpp
699
typename TestClass::Iterator it = v.Begin();
src/tests/system/kernel/util/VectorTest.cpp
700
typename TestClass::ConstIterator cit = cv.Begin();