Searched refs:test (Results 26 - 50 of 120) sorted by relevance

12345

/haiku/headers/tools/cppunit/cppunit/
H A DTestResult.h28 * A single instance of this class is used when running the test. It is usually
29 * created by the test runner (TestRunner).
33 * Use a Outputter to receive a test summary once it has finished
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 DTextTestProgressListener.h11 * \brief TestListener that show the status of each TestCase test result.
24 void startTest( Test *test );
H A DTextTestResult.h14 /*! \brief Holds printable test result (DEPRECATED).
25 virtual void addFailure( Test *test, Exception *e );
27 virtual void startTest( Test *test );
/haiku/src/tests/system/kernel/unit/
H A DTestError.h17 TestError(Test* test, char* message);
H A DTestVisitor.h17 virtual bool VisitTest(Test* test);
H A DTestManager.cpp38 virtual bool VisitTest(Test* test) argument
40 fOutput.Print("%*s%s\n", fLevel * 2, "", test->Name());
/haiku/src/tools/checkstyle/
H A Dtest.cpp35 if (test)
/haiku/src/tools/cppunit/
H A DBTestSuite.cpp45 Test *test = it->second; local
46 test->run( result );
51 // Counts the number of test cases that will be run by this test.
66 // Adds a test to the suite.
69 BTestSuite::addTest(string name, CppUnit::Test *test) { argument
70 fTests[name] = test;
74 // Returns a string representation of the test suite.
82 // Returns the name of the test suite.
H A DTestListener.cpp15 BTestListener::startTest( CppUnit::Test *test ) {
17 cout << test->getName() << endl;
36 BTestListener::endTest( CppUnit::Test *test ) {
58 cout << " Your test ran for longer than an entire day. Honestly," << endl;
/haiku/src/tools/cppunit/cppunit/
H A DTestSuite.cpp43 Test *test = *it; local
44 test->run( result );
49 /// Counts the number of test cases that will be run by this test.
64 /// Adds a test to the suite.
66 TestSuite::addTest( Test *test )
68 m_tests.push_back( test );
72 /// Returns a string representation of the test suite.
80 /// Returns the name of the test suite.
H A DTextTestProgressListener.cpp24 TextTestProgressListener::startTest( Test *test )
H A DXmlOutputter.cpp245 Test *test = tests[testNumber]; local
246 if ( failedTests.find( test ) != failedTests.end() )
247 addFailedTest( test, failedTests[test], testNumber+1, testsNode );
262 Test *test = tests[testNumber]; local
263 if ( failedTests.find( test ) == failedTests.end() )
264 addSucessfulTest( test, testNumber+1, testsNode );
283 XmlOutputter::addFailedTest( Test *test, argument
293 testNode->addNode( new Node( "Name", test->getName() ) );
315 XmlOutputter::addSucessfulTest( Test *test, argument
[all...]
H A DTextTestResult.cpp23 TextTestResult::addFailure( Test *test, Exception *e ) argument
25 TestResult::addFailure( test, e );
38 TextTestResult::startTest( Test *test )
40 TestResultCollector::startTest (test);
88 stream << "test: " << failure->failedTest()->getName();
/haiku/headers/os/drivers/
H A Dcpuidle.h25 void (*cpuidle_wait)(int32* variable, int32 test);
/haiku/src/tests/kits/interface/flatten_picture/
H A DPictureTestWindow.cpp143 text = "Unknown test method!";
197 PictureTest *test; local
200 test = new FlattenPictureTest();
203 test = new ArchivePictureTest();
209 test->SetColorSpace(colorSpace);
210 bool ok = test->Test(testCase->func, frame);
214 item->SetErrorMessage(test->ErrorMessage());
215 item->SetDirectBitmap(test->DirectBitmap(true));
216 item->SetOriginalBitmap(test->BitmapFromPicture(true));
217 item->SetArchivedBitmap(test
[all...]
/haiku/src/tests/servers/app/benchmark/
H A DBenchmark.cpp40 Benchmark(Test* test, drawing_mode mode, bool clipping) argument
42 fTest(test),
117 // get test name
120 fprintf(stderr, "Usage: %s <test name>\n", argv[0]);
144 // find and create the test
145 Test* test = NULL; local
149 test = (kTestInfos[i].create)();
154 fprintf(stderr, "Insufficient memory to create the test. Sorry.\n");
158 if (test == NULL) {
159 fprintf(stderr, "Error: Invalid test nam
[all...]
H A DTestWindow.h24 TestView(BRect frame, Test* test,
40 TestWindow(BRect fame, Test* test,
/haiku/headers/tools/cppunit/cppunit/ui/text/
H A DTestRunner.h21 * \brief A text mode test runner.
25 * The test runner manage the life cycle of the added tests.
27 * The test runner can run only one of the added tests or all the tests.
74 void addTest( Test *test );
83 virtual bool runTest( Test *test,
/haiku/src/tests/kits/support/
H A DDateTimeTest.cpp18 void test(void);
30 DateTimeTest::test() function in class:DateTimeTest
H A DByteOrderTest.cpp24 // The tests might be messed up because of that, and don't test the real thing, as
33 void test(void);
46 return new CppUnit::TestCaller<Swap16Test>("ByteOrderTest::Swap16Test", &Swap16Test::test);
51 Swap16Test::test(void) function in class:Swap16Test
76 void test(void);
89 return new CppUnit::TestCaller<Swap32Test>("ByteOrderTest::Swap32Test", &Swap32Test::test);
94 Swap32Test::test(void) function in class:Swap32Test
119 void test(void);
132 return new CppUnit::TestCaller<Swap64Test>("ByteOrderTest::Swap64Test", &Swap64Test::test);
137 Swap64Test::test(voi function in class:Swap64Test
180 SwapFloatTest::test(void) function in class:SwapFloatTest
218 SwapDoubleTest::test(void) function in class:SwapDoubleTest
256 SwapDataTest::test(void) function in class:SwapDataTest
352 IsTypeSwappedTest::test(void) function in class:IsTypeSwappedTest
[all...]
/haiku/headers/tools/cppunit/cppunit/extensions/
H A DTestSetUp.h15 TestSetUp( Test *test );
/haiku/src/tests/kits/app/messaging/
H A DPortLinkTest.cpp50 char test[kBufferSize + 2048]; local
52 sender.Attach(test, kBufferSize - 40);
56 sender.Attach(test, sizeof(test));
/haiku/headers/private/kernel/util/
H A Datomic.h20 const PointerType* test)
24 (int32)test);
27 (int64)test);
19 atomic_pointer_test_and_set(PointerType** _pointer, const PointerType* set, const PointerType* test) argument
/haiku/src/tests/servers/app/clip_to_picture/
H A Dmain.cpp132 void AddTest(Test* test);
170 fTestSelectionField = new BMenuField("test selection",
171 "Select test:", new BPopUpMenu("select"));
215 TestWindow::AddTest(Test* test) argument
217 if (test == NULL || fTests.HasItem(test))
220 if (!fTests.AddItem(test)) {
221 delete test;
228 BMenuItem* item = new BMenuItem(test->Name(), message);
231 delete test;
244 Test* test = (Test*)fTests.ItemAt(index); local
[all...]
/haiku/src/add-ons/print/drivers/pcl6/
H A DDeltaRowCompression.cpp142 test(AbstractDeltaRowCompressor* compressor, uchar* row) { function
168 test(&compressor, row1);
169 test(&compressor, row2);
170 test(&compressor, row3);

Completed in 304 milliseconds

12345