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

  /external/webkit/Tools/WebKitAPITest/
main.cpp 27 #include "TestsController.h"
41 return !TestsController::shared().runAllTests();
TestsController.h 36 class TestsController {
37 WTF_MAKE_NONCOPYABLE(TestsController);
39 static TestsController& shared();
48 TestsController();
49 ~TestsController();
TestsController.cpp 26 #include "TestsController.h"
39 inline TestsController::TestsController()
47 TestsController& TestsController::shared()
49 static TestsController& shared = *new TestsController;
53 bool TestsController::runAllTests()
73 void TestsController::addTest(PassOwnPtr<Test> test)
79 void TestsController::testFailed(const char* file, int line, const char* message
    [all...]
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)
  /external/webkit/Tools/TestWebKitAPI/
TestsController.h 36 class TestsController {
38 static TestsController& shared();
50 TestsController();
51 ~TestsController();
TestsController.cpp 26 #include "TestsController.h"
34 TestsController& TestsController::shared()
36 static TestsController& shared = *new TestsController;
40 TestsController::TestsController()
46 void TestsController::dumpTestNames()
54 bool TestsController::runTestNamed(const std::string& identifier)
71 void TestsController::testFailed(const char* file, int line, const char* message
    [all...]
Test.h 29 #include "TestsController.h"
45 TestsController::shared().registerCreateTestFunction(testSuite + "/" + testCase, Register::create);
82 #define _TEST_ASSERT_HELPER(expression, returnStatement) do { if (!(expression)) { TestsController::shared().testFailed(__FILE__, __LINE__, #expression); returnStatement; } } while (0)
  /external/webkit/Tools/TestWebKitAPI/win/
main.cpp 26 #include "TestsController.h"
39 TestWebKitAPI::TestsController::shared().dumpTestNames();
41 passed = TestWebKitAPI::TestsController::shared().runTestNamed(argument);
  /external/webkit/Tools/TestWebKitAPI/mac/
main.mm 26 #import "TestsController.h"
38 TestWebKitAPI::TestsController::shared().dumpTestNames();
40 passed = TestWebKitAPI::TestsController::shared().runTestNamed(argument);

Completed in 66 milliseconds