Lines Matching full:self
42 char* TestCase_name(TestCase* self)
44 return self->name;
47 void TestCase_run(TestCase* self,TestResult* result)
49 TestResult_startTest(result, (Test*)self);
50 if (self->setUp) {
51 self->setUp();
53 if (self->runTest) {
57 self_ = self;
58 self->runTest();
62 if (self->tearDown) {
63 self->tearDown();
65 TestResult_endTest(result, (Test*)self);
68 int TestCase_countTestCases(TestCase* self)