You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213 |
- {%- import 'macros.tex' as macros %}
- \begin{tabu} to \linewidth {lX}
- \toprule
- Number of tests & {{ "{\\bf %d}" % testrun.number_of_tests }}\\
- Number of successfull tests & {{ "{\\bf %d}" % testrun.number_of_successfull_tests }}\\
- Number of possibly failed tests & \textcolor{% if testrun.number_of_possibly_failed_tests > 0%}{orange}{% else %}{black}{% endif %}{{ "{\\bf %d}" % testrun.number_of_possibly_failed_tests }}\\
- Number of failed tests & \textcolor{% if testrun.number_of_failed_tests > 0%}{red}{% else %}{black}{% endif %}{{ "{\\bf %d}" % testrun.number_of_failed_tests }}\\
- \midrule
- Executionlevel & {{ macros.latex_filter(testrun.testcase_names.get('%d' % testrun.testcase_execution_level, 'unknown')) }}\\
- Time consumption & {{ '%.3fs' % testrun.time_consumption }}\\
- \bottomrule
- \end{tabu}
|