Index: openacs-4/packages/acs-automated-testing/www/admin/index.adp =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-automated-testing/www/admin/index.adp,v diff -u -r1.21.2.14 -r1.21.2.15 --- openacs-4/packages/acs-automated-testing/www/admin/index.adp 2 Mar 2021 11:55:48 -0000 1.21.2.14 +++ openacs-4/packages/acs-automated-testing/www/admin/index.adp 13 Mar 2021 11:25:33 -0000 1.21.2.15 @@ -42,6 +42,7 @@ Include Stress tests

+

@@ -102,9 +103,11 @@ +

@bulk_actions_vars;literal@ + - - - - - - + + + + + + + @@ -166,13 +170,22 @@ @packageinfo.proc_coverage@% + - - - + + + + + + + + + +
@@ -120,13 +123,14 @@ Package keyTestcases runPassesFailsWarningsResultProc coverageExecuted TestcasesPassesFailsWarningsResultTest coverage
- Global proc coverage: @global_test_coverage_percent@% -
Totals:@::total.fails@@::total.passes@@::total.fails@ + @::total.warnings@ + @global_test_coverage_percent@%
@@ -267,6 +280,7 @@ + xaaa
» Rerun displayed test cases Index: openacs-4/packages/acs-automated-testing/www/admin/index.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-automated-testing/www/admin/index.tcl,v diff -u -r1.16.2.13 -r1.16.2.14 --- openacs-4/packages/acs-automated-testing/www/admin/index.tcl 2 Mar 2021 11:55:48 -0000 1.16.2.13 +++ openacs-4/packages/acs-automated-testing/www/admin/index.tcl 13 Mar 2021 11:25:34 -0000 1.16.2.14 @@ -106,6 +106,8 @@ } } +array set ::total {cases 0 passes 0 fails 0 warnings 0} + if {$view_by eq "package"} { # # Calculate package proc test coverage @@ -131,6 +133,10 @@ $passes $fails $warnings \ $proc_coverage $proc_coverage_level \ [dict get $color background] [dict get $color foreground] + incr ::total(cases) $total + incr ::total(passes) $passes + incr ::total(fails) $fails + incr ::total(warnings) $warnings } } else { # Index: openacs-4/packages/acs-automated-testing/www/resources/tests.css =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-automated-testing/www/resources/tests.css,v diff -u -r1.1.2.8 -r1.1.2.9 --- openacs-4/packages/acs-automated-testing/www/resources/tests.css 20 Aug 2020 10:44:40 -0000 1.1.2.8 +++ openacs-4/packages/acs-automated-testing/www/resources/tests.css 13 Mar 2021 11:25:34 -0000 1.1.2.9 @@ -34,9 +34,13 @@ } .package-table { border-spacing: 3px; - border-collapse: separate; + /*border-collapse: separate;*/ width: 100%; } +table.package-table tbody tr { + border-top: 2px solid white; +} + table.package-table td { padding: 3px; } @@ -60,6 +64,26 @@ font-weight: bold; } +table.package-table thead tr { + border-top: 2px solid black; + border-bottom: 2px solid black; + padding: 6px; +} +table.package-table thead th { + padding: 6px; +} +table.package-table body td { + border-top: 4px; +} +table.package-table tfoot tr { + border-top: 2px solid black; + border-bottom: 2px solid black; +} +table.package-table tfoot th { + padding: 6px; +} + + /* Testcase */ .description h2 { 1.5em; } div.description dd {