* 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
34 lines
998 B
HTML
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>
|