diff --git a/graphic/vkgl/src/khrgles31/ActsKhrgles31TestSuite.cpp b/graphic/vkgl/src/khrgles31/ActsKhrgles31TestSuite.cpp index a2f566ef98727439254b4f8eb02f8d411e27dc02..f0c514cc6e1a1b7f6adb6a1ab26afbaeb2231367 100644 --- a/graphic/vkgl/src/khrgles31/ActsKhrgles31TestSuite.cpp +++ b/graphic/vkgl/src/khrgles31/ActsKhrgles31TestSuite.cpp @@ -27,34 +27,4 @@ namespace OHOS { time_t ActsKhrgles31TestSuite::endTime; FuncRunResult ActsKhrgles31TestSuite::runResult; - // Preset action of the test suite, which is executed before the first test case - void ActsKhrgles31TestSuite::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 ActsKhrgles31TestSuite::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 ActsKhrgles31TestSuite::SetUp(void) - { - } - // Cleanup action of the test case - void ActsKhrgles31TestSuite::TearDown(void) - { - } } \ No newline at end of file