diff --git a/graphic/vkgl/src/khrgles2/ActsKhrgles2TestSuite.cpp b/graphic/vkgl/src/khrgles2/ActsKhrgles2TestSuite.cpp index f011877d30b1a5ad1acebb2ee2cd6ef605b0ebd9..98351f8f6a2a59aab4f96dc640079fd30dd1c9ba 100644 --- a/graphic/vkgl/src/khrgles2/ActsKhrgles2TestSuite.cpp +++ b/graphic/vkgl/src/khrgles2/ActsKhrgles2TestSuite.cpp @@ -27,34 +27,4 @@ namespace OHOS { time_t ActsKhrgles2TestSuite::endTime; FuncRunResult ActsKhrgles2TestSuite::runResult; - // Preset action of the test suite, which is executed before the first test case - void ActsKhrgles2TestSuite::SetUpTestCase(void) - { - time(&startTime); - RegistPackage(); - runResult.numPassed = 0; - runResult.numFailed = 0; - runResult.numNotSupported = 0; - runResult.numWarnings = 0; - runResult.numWaived = 0; - } - // Test suite cleanup action, which is executed after the last test case - void ActsKhrgles2TestSuite::TearDownTestCase(void) - { - time(&endTime); - printf("Test run totals --- Passed[%d]\n", runResult.numPassed); - printf("Test run totals --- Failed[%d]\n", runResult.numFailed); - printf("Test run totals --- Notsupport[%d]\n", runResult.numNotSupported); - printf("Test run totals --- Warnings[%d]\n", runResult.numWarnings); - printf("Test run totals --- Waved[%d]\n", runResult.numWaived); - cout << "testmain end --- COST TIME ["<< (endTime-startTime) << "]" << std::endl;; - } - // Preset action of the test case - void ActsKhrgles2TestSuite::SetUp(void) - { - } - // Cleanup action of the test case - void ActsKhrgles2TestSuite::TearDown(void) - { - } } \ No newline at end of file