BAEL-768 - Simplifying report generation code
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
<html>
|
||||
<head><title>My Custom Report</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Suite</th>
|
||||
<th>Test</th>
|
||||
<th>Method</th>
|
||||
<th>Status</th>
|
||||
<th>Execution Time(ms)</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr class="success">
|
||||
<td>My test suite</td>
|
||||
<td>numbersXML</td>
|
||||
<td>givenNumberObjectFromDataProvider_ifEvenCheckOK_thenCorrect</td>
|
||||
<td>PASSED</td>
|
||||
<td>0</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user