Searched refs:CppUnit (Results 51 - 75 of 340) sorted by relevance

1234567891011>>

/haiku/src/tests/add-ons/translators/tgatranslator/
H A DTGATranslatorTest.h12 namespace CppUnit { namespace
18 static CppUnit::Test* Suite();
/haiku/src/tests/kits/support/bautolock/
H A DAutolockLockerTest.h17 class CppUnit::Test;
25 static CppUnit::Test *suite(void);
/haiku/src/tests/kits/support/blocker/
H A DDestructionTest2.h15 class CppUnit::Test;
23 static CppUnit::Test *suite(void);
/haiku/src/tests/add-ons/translators/tifftranslator/
H A DTIFFTranslatorTest.h12 namespace CppUnit { namespace
18 static CppUnit::Test* Suite();
/haiku/headers/tools/cppunit/cppunit/extensions/
H A DHelperMacros.h14 namespace CppUnit namespace
24 virtual CppUnit::TestFixture *makeFixture() =0;
26 } // namespace CppUnit
59 * class MyTest : public CppUnit::TestFixture {
74 * \code static CppUnit::TestSuite *suite()\endcode
86 * CppUnit::Test* tp =
87 * CppUnit::TestFactoryRegistry::getRegistry().makeTest();
95 * class StringTest : public CppUnit::TestFixture {
127 class ThisTestFixtureFactory : public CppUnit::TestFixtureFactory \
129 virtual CppUnit
[all...]
H A DTestFactory.h6 namespace CppUnit { namespace
23 } // namespace CppUnit
H A DTypeInfoHelper.h11 namespace CppUnit { namespace
27 } // namespace CppUnit
/haiku/src/tests/apps/haikudepot/
H A DStorageUtilsTest.cpp42 CppUnit::TestSuite& suite = *new CppUnit::TestSuite("StorageUtilsTest");
45 new CppUnit::TestCaller<StorageUtilsTest>(
H A DDumpExportRepositoryJsonListenerTest.h13 class DumpExportRepositoryJsonListenerTest : public CppUnit::TestCase {
H A DStorageUtilsTest.h12 class StorageUtilsTest : public CppUnit::TestCase {
H A DValidationUtilsTest.cpp151 CppUnit::TestSuite& suite = *new CppUnit::TestSuite(
155 new CppUnit::TestCaller<ValidationUtilsTest>(
159 new CppUnit::TestCaller<ValidationUtilsTest>(
163 new CppUnit::TestCaller<ValidationUtilsTest>(
167 new CppUnit::TestCaller<ValidationUtilsTest>(
171 new CppUnit::TestCaller<ValidationUtilsTest>(
175 new CppUnit::TestCaller<ValidationUtilsTest>(
H A DStringUtilsTest.cpp113 CppUnit::TestSuite& suite = *new CppUnit::TestSuite("StringUtilsTest");
116 new CppUnit::TestCaller<StringUtilsTest>(
120 new CppUnit::TestCaller<StringUtilsTest>(
124 new CppUnit::TestCaller<StringUtilsTest>(
128 new CppUnit::TestCaller<StringUtilsTest>(
133 new CppUnit::TestCaller<StringUtilsTest>(
137 new CppUnit::TestCaller<StringUtilsTest>(
/haiku/headers/tools/cppunit/cppunit/
H A DOutputter.h7 namespace CppUnit namespace
28 } // namespace CppUnit
H A DTestFixture.h6 namespace CppUnit { namespace
27 * class MathTest : public CppUnit::TestFixture {
57 * CppUnit::Test *test = new CppUnit::TestCaller<MathTest>( "testAdd",
67 * static CppUnit::TestSuite *MathTest::suite () {
68 * CppUnit::TestSuite *suiteOfTests = new CppUnit::TestSuite;
69 * suiteOfTests->addTest(new CppUnit::TestCaller<MathTest>(
71 * suiteOfTests->addTest(new CppUnit::TestCaller<MathTest>(
H A DSourceLine.h9 * \relates CppUnit::SourceLine
13 #define CPPUNIT_SOURCELINE() ::CppUnit::SourceLine( __FILE__, __LINE__ )
16 namespace CppUnit namespace
56 } // namespace CppUnit
/haiku/src/tests/kits/storage/
H A DMimeSnifferTest.h10 static CppUnit::Test* Suite();
H A DDataIOTest.cpp11 CppUnit::Test*
13 CppUnit::TestSuite *suite = new CppUnit::TestSuite();
14 typedef CppUnit::TestCaller<DataIOTest> TC;
H A DVolumeTest.h13 class CppUnit::Test;
19 static CppUnit::Test* Suite();
/haiku/src/tests/system/kernel/util/
H A DVectorMapTest.h10 static CppUnit::Test* Suite();
H A DBitmapTest.h10 static CppUnit::Test* Suite();
/haiku/src/tests/servers/launch/
H A DUtilityTest.h13 class UtilityTest : public CppUnit::TestCase {
/haiku/src/tests/add-ons/kernel/debugger/
H A DDemangleTest.cpp71 CppUnit::TestSuite& suite = *new CppUnit::TestSuite("DemangleTest");
73 suite.addTest(new CppUnit::TestCaller<DemangleTest>(
75 suite.addTest(new CppUnit::TestCaller<DemangleTest>(
/haiku/src/tools/cppunit/
H A DBTestSuite.cpp26 for ( map<string, CppUnit::Test*>::iterator it = fTests.begin();
37 BTestSuite::run( CppUnit::TestResult *result ) {
38 for ( map<string, CppUnit::Test*>::iterator it = fTests.begin();
57 for ( map<string, CppUnit::Test *>::const_iterator it = fTests.begin();
69 BTestSuite::addTest(string name, CppUnit::Test *test) {
91 const map<string, CppUnit::Test*> &
/haiku/headers/tools/cppunit/
H A DThreadedTestCaller.h16 template <class TestClass, class ExpectedException = CppUnit::NoExceptionExpected>
17 class CPPUNIT_API BThreadedTestCaller : public CppUnit::TestCase {
29 virtual CppUnit::TestResult *run();
30 virtual void run(CppUnit::TestResult *result);
96 throw CppUnit::Exception("BThreadedTestCaller::addThread() - Attempt to add thread under duplicated name ('"
102 CppUnit::TestResult *
104 CppUnit::TestResult *result = new CppUnit::TestResult;
111 BThreadedTestCaller<TestClass, ExpectedException>::run(CppUnit::TestResult *result) {
115 throw CppUnit
[all...]
H A DThreadManager.h23 status_t LaunchThread(CppUnit::TestResult *result);
37 CppUnit::TestResult *fTestResult;
108 BThreadManager<TestClass, ExpectedException>::LaunchThread(CppUnit::TestResult *result) {
123 throw CppUnit::Exception("BThreadManager::LaunchThread() -- Error acquiring thread semaphore");
149 throw CppUnit::Exception("BThreadManager::Run() -- NULL fObject pointer");
167 CppUnit::ExpectedExceptionTraits<ExpectedException>::expectedException();
169 } catch ( CppUnit::Exception &e ) {
171 CppUnit::Exception *threadException = new CppUnit::Exception(
179 CppUnit
[all...]

Completed in 142 milliseconds

1234567891011>>