From cb256cee0fe43430b461dcee392267dc65514e41 Mon Sep 17 00:00:00 2001 From: Qiu Tingting Date: Thu, 26 May 2022 13:06:34 +0800 Subject: agl-test-framework: add AGLBaseTest class Add AGLBaseTest class for existing test suites which has own test scripts. It package the default operations, like as log processing and file saving. In test suite, please create a child class based onAGLBaseTest. Then it is easy to init, run tests, check results and make a repoter. Bug-AGL: SPEC-4345 Signed-off-by: Qiu Tingting Change-Id: I9dbc01db59df16eb5718b19b3223ad95da0afb11 --- template/summary_result_tpl.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 template/summary_result_tpl.html (limited to 'template/summary_result_tpl.html') diff --git a/template/summary_result_tpl.html b/template/summary_result_tpl.html new file mode 100644 index 0000000..6b8f9fe --- /dev/null +++ b/template/summary_result_tpl.html @@ -0,0 +1,18 @@ + + + + {{ data.test_name }} test report + + +

{{ data.test_name }} test report

+
  • Status : {{ data.test_status }}
  • +
  • Total : {{ data.collected }} Pass : {{ data.passed }} Fail : {{ data.failed }} Skip : {{ data.skipped }}
  • +
  • Details :
  • + +{{ data.case_status_html }} +
    +

    +
  • Detail log : {{ data.test_name }}/log.zip
  • + + + -- cgit 1.2.3-korg