Searched refs:TestsController (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Tools/WebKitAPITest/
H A Dmain.cpp27 #include "TestsController.h"
41 return !TestsController::shared().runAllTests();
H A DTestsController.h36 class TestsController { class in namespace:WebKitAPITest
37 WTF_MAKE_NONCOPYABLE(TestsController);
39 static TestsController& shared();
48 TestsController();
49 ~TestsController();
H A DTestsController.cpp26 #include "TestsController.h"
39 inline TestsController::TestsController() function in class:WebKitAPITest::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
[all...]
H A DTest.h28 #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/
H A DTestsController.h36 class TestsController { class in namespace:TestWebKitAPI
38 static TestsController& shared();
50 TestsController();
51 ~TestsController();
H A DTestsController.cpp26 #include "TestsController.h"
34 TestsController& TestsController::shared()
36 static TestsController& shared = *new TestsController;
40 TestsController::TestsController() function in class:TestWebKitAPI::TestsController
46 void TestsController::dumpTestNames()
54 bool TestsController::runTestNamed(const std::string& identifier)
71 void TestsController
[all...]
H A DTest.h29 #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/
H A Dmain.cpp26 #include "TestsController.h"
39 TestWebKitAPI::TestsController::shared().dumpTestNames();
41 passed = TestWebKitAPI::TestsController::shared().runTestNamed(argument);
/external/webkit/Tools/TestWebKitAPI/mac/
H A Dmain.mm26 #import "TestsController.h"
38 TestWebKitAPI::TestsController::shared().dumpTestNames();
40 passed = TestWebKitAPI::TestsController::shared().runTestNamed(argument);

Completed in 94 milliseconds