Searched defs:testName (Results 1 - 3 of 3) sorted by relevance

/inkscape/cxxtest/cxxtest/
H A DDummyDescriptions.cpp9 const char *DummyTestDescription::testName() const { return "<no test>"; } function in class:CxxTest::DummyTestDescription
31 bool DummySuiteDescription::leaveOnly( const char * /*testName*/ ) { return false; }
44 bool DummyWorldDescription::leaveOnly( const char * /*suiteName*/, const char * /*testName*/ ) { return false; }
H A DRealDescriptions.cpp86 const char *RealTestDescription::testName() const { return _testName; } function in class:CxxTest::RealTestDescription
144 bool RealSuiteDescription::leaveOnly( const char *testName )
147 if ( stringsEqual( td->testName(), testName ) ) {
248 bool RealWorldDescription::leaveOnly( const char *suiteName, const char *testName )
252 if ( testName )
253 if ( !sd->leaveOnly( testName ) )
304 bool leaveOnly( const char *suiteName, const char *testName )
306 return RealWorldDescription().leaveOnly( suiteName, testName );
/inkscape/cxxtest/
H A Dcxxtestgen.pl281 sub testName() { return $test->{'name'}; } subroutine
465 my $class = "TestDescription_" . suiteName() . "_" . testName();
470 testList(), suiteDescription(), testLine(), testName();
472 printf "} testDescription_%s_%s;\n\n", suiteName(), testName();
476 return sprintf( "if ( %s ) %s->%s();", suiteObject(), suiteObject(), testName() );
480 return sprintf( "%s.%s();", suiteObject(), testName() );
529 suiteName(), testName(), testList(), suiteDescription(), testLine(), testName();

Completed in 33 milliseconds