Grzegorz Piwowarek 776a01429e
Group testing modules (#3014)
* move security content from spring-security-rest-full

* swagger update

* move query language to new module

* rename spring-security-rest-full to spring-rest-full

* group persistence modules

* group testing modules

* try fix conflict
2017-11-12 11:16:46 +01:00

34 lines
998 B
HTML

<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>