Searched refs:Test (Results 1 - 25 of 458) sorted by path

1234567891011>>

/haiku/headers/tools/cppunit/
H A DTestListener.h8 class Test;
23 virtual void startTest( CppUnit::Test *test );
25 virtual void endTest( CppUnit::Test *test );
H A DTestShell.h6 #include <cppunit/Test.h>
27 // takes no arguments and returns a pointer to a CppUnit::Test
28 typedef CppUnit::Test* (*SuiteFunction)(void);
69 void AddTest(const std::string &name, CppUnit::Test* test);
109 typedef std::map<std::string, CppUnit::Test*> TestMap;
H A DTestSuite.h5 #include <cppunit/Test.h>
14 class CPPUNIT_API BTestSuite : public CppUnit::Test {
24 virtual void addTest(std::string name, CppUnit::Test *test);
27 const std::map<std::string, CppUnit::Test*> &getTests() const;
30 std::map<std::string, CppUnit::Test*> fTests;
/haiku/headers/tools/cppunit/cppunit/
H A DCompilerOutputter.h14 class Test;
H A DTest.h14 * All test objects should be a subclass of Test. Some test objects,
18 * When a Test is run, the result is collected by a TestResult object.
23 class CPPUNIT_API Test class in namespace:CppUnit
26 virtual ~Test () {};
H A DTestCase.h5 #include <cppunit/Test.h>
26 class CPPUNIT_API TestCase : public Test,
H A DTestFailure.h11 class Test;
14 /*! \brief Record of a failed Test execution.
26 TestFailure( Test *failedTest,
32 virtual Test *failedTest() const;
47 Test *m_failedTest;
H A DTestListener.h10 class Test;
36 virtual void startTest( Test *test ) {}
46 virtual void endTest( Test *test ) {}
H A DTestResult.h17 class Test;
43 * \see Test, TestListener, TestResultCollector, Outputter.
59 virtual void startTest( Test *test );
60 virtual void addError( Test *test, Exception *e );
61 virtual void addFailure( Test *test, Exception *e );
62 virtual void endTest( Test *test );
H A DTestResultCollector.h21 template class CPPUNIT_API deque<Test *>;
42 typedef std::deque<Test *> Tests;
52 void startTest( Test *test );
H A DTestSuite.h11 #include <cppunit/Test.h>
23 template class CPPUNIT_API vector<Test *>;
42 * \see Test
47 class CPPUNIT_API TestSuite : public Test
58 void addTest( Test *test );
59 const vector<Test *> &getTests() const;
68 vector<Test *> m_tests;
H A DTextTestProgressListener.h24 void startTest( Test *test );
H A DTextTestResult.h12 class Test;
25 virtual void addFailure( Test *test, Exception *e );
27 virtual void startTest( Test *test );
H A DXmlOutputter.h22 class Test;
93 typedef std::map<Test *,TestFailure*> FailedTests;
100 virtual void addFailedTest( Test *test,
106 virtual void addSucessfulTest( Test *test,
/haiku/headers/tools/cppunit/cppunit/extensions/
H A DRepeatedTest.h9 class Test;
20 RepeatedTest( Test *test,
H A DTestDecorator.h5 #include <cppunit/Test.h>
20 class CPPUNIT_API TestDecorator : public Test
23 TestDecorator (Test *test);
32 Test *m_test;
40 inline TestDecorator::TestDecorator (Test *test)
H A DTestFactory.h8 class Test;
10 /*! \brief Abstract Test factory.
18 * \return A new Test.
20 virtual Test* makeTest() = 0;
H A DTestFactoryRegistry.h91 virtual Test *makeTest();
H A DTestSetUp.h8 class Test;
15 TestSetUp( Test *test );
H A DTestSuiteBuilder.h55 void addTest( Test *test )
63 Test *test =
73 Test *test =
86 Test *test = new TestCaller<Fixture,ExceptionType>(
H A DTestSuiteFactory.h8 class Test;
17 virtual Test *makeTest()
/haiku/headers/tools/cppunit/cppunit/ui/text/
H A DTestRunner.h11 class Test;
74 void addTest( Test *test );
83 virtual bool runTest( Test *test,
90 virtual Test *findTestByName( string name ) const;
/haiku/src/add-ons/kernel/drivers/audio/echo/generic/
H A DCChannelMask.cpp254 // Test returns TRUE if any bits in source mask are set in this mask
258 BOOL CChannelMask::Test( PCChannelMask pSrcMask ) function in class:CChannelMask
265 } // BOOL CChannelMask::Test( PChannelMask pSrcMask )
H A DCChannelMask.h101 // Test driver channel index in mask.
112 BOOL Test( CChannelMask * pSrcMask );
115 // Return TRUE if the Test Mask contains all of the channels
123 // Return TRUE if the Test Mask contains at least one of the channels
207 // Test pipe index in mask.
/haiku/src/servers/launch/
H A DBaseJob.cpp67 return fCondition->Test(context);

Completed in 125 milliseconds

1234567891011>>