def project = testRunner.getTestCase().getTestSuite().getProject().getWorkspace().getProjectByName("MyProject");
//TearDownTemplate
def tearDownTemplate = """
/*BEGINNING CUSTOM TEARDOWN FOR THIS TESTCASE ONLY*/
//Reserved for this testcase only, because the teardown is populated automaticly, we don't want to loose some work if we need specials things.
/*END OF CUSTOM TEARDOWN HERE £££*/
// Common teardown for all testcases Here
// Here do the stuff for your time execution
""";
//Loop through each Test Suite in the project
for(suite in project.getTestSuiteList()) {
//Loop through each Test Case
for(tcase in suite.getTestCaseList()) {
teardown = tcase.getTearDownScript();
if(teardown != null){
// we split the teardownTemplate and the teardown already set by our delimiter '£££'
def fields = teardown.tokenize("£££");
def fieldsTemplate = tearDownTemplate.tokenize("£££");
//teardown replacement
tcase.setTearDownScript(fields[0] + "£££" + fieldsTemplate[1]);
}else{
tcase.setTearDownScript(tearDownTemplate);
}
}
}
log.info 'finished'
ありますあなたはすでに 'ティアダウンScript'を持っていますか?あなたがその質問にそれを加えることができればいいでしょうか?そして、あなたはそれをどのようにしたいのですか?サンプルレポートが役に立ちます。どのような種類のレポートをお探しですか? html?プレーンテキスト? – Rao
これまでに報告されたレポート生成に関する別の質問があります。関連性はないかもしれませんが、それを見てください。 https://stackoverflow.com/questions/41700437/creating-a-test-report-from-project-level-tear-down-script – Rao
@Rao、私はTeardownスクリプトを持っていません..私はTotal Execution Timeスイートのようなカード管理開始時間:xxxと終了時間:xxxxまたは合計時間がかかる:xxx – ChanGan