HomeSort by relevance Sort by last modified time
    Searched refs:TestsController (Results 1 - 4 of 4) sorted by null

  /external/webkit/WebKitTools/WebKitAPITest/
main.cpp 25 #include "TestsController.h"
34 return !TestsController::shared().runAllTests();
TestsController.cpp 25 #include "TestsController.h"
38 inline TestsController::TestsController()
46 TestsController& TestsController::shared()
48 static TestsController& shared = *new TestsController;
52 bool TestsController::runAllTests()
72 void TestsController::addTest(PassOwnPtr<Test> test)
78 void TestsController::testFailed(const char* file, int line, const char* message
    [all...]
TestsController.h 37 class TestsController : public Noncopyable {
39 static TestsController& shared();
48 TestsController();
49 ~TestsController();
Test.h 28 #include "TestsController.h"
51 const bool TEST_CLASS_NAME(testCaseName, testName)::initialized = (TestsController::shared().addTest(new TEST_CLASS_NAME(testCaseName, testName)), true); \
55 #define TEST_ASSERT(expression) do { if (!(expression)) { TestsController::shared().testFailed(__FILE__, __LINE__, #expression); return; } } while (0)

Completed in 2232 milliseconds