diff options
author | Jiri Vanek <[email protected]> | 2011-05-10 11:58:19 +0200 |
---|---|---|
committer | Jiri Vanek <[email protected]> | 2011-05-10 11:58:19 +0200 |
commit | 758132c5c84f359ddd824573ad2ec5944d51559e (patch) | |
tree | 6bc95cc16020d478c5d62452aa617ed64b34ad13 /tests/report-styles/report.css | |
parent | a20b6152e9037c3f4e6f211d946035de7c803648 (diff) |
added posibility for junit to export reports to xml, addes set of styles for easy navigation inside tests-output file (transformed to html)
Diffstat (limited to 'tests/report-styles/report.css')
-rw-r--r-- | tests/report-styles/report.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/report-styles/report.css b/tests/report-styles/report.css new file mode 100644 index 0000000..e0a59c3 --- /dev/null +++ b/tests/report-styles/report.css @@ -0,0 +1,21 @@ +div.passed {background-color:green;height:auto } +div.failed {background-color:red ;height:auto} +div.ignored {background-color:yellow ;height:auto} + +div.clazz {display:inline } +div.method {display:inline } + +div.result {display:block; border: thin solid black ;height:auto} +div.status {display:inline; } +div.wtrace {display:inline; border: thin solid black; float: right;height:auto} +div.theader {display:block; border: thin solid black} +div.trace {display:block; border: thin solid black} + +div.space-line { clear: both; margin: 0; padding: 0; width: auto;} + +div.tablee {width:200px; border: thin solid black; } +div.row { border: thin solid black; } +div.cell1 {display:inline; float: left;height:auto} +div.cell2 {display:inline; float: right;height:auto} + +a.classSumaryName{font-weight:bold} |