Default test.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <html>
  2. <head>
  3. <title>TestNG: Default test</title>
  4. <link href="../testng.css" rel="stylesheet" type="text/css" />
  5. <link href="../my-testng.css" rel="stylesheet" type="text/css" />
  6. <style type="text/css">
  7. .log { display: none;}
  8. .stack-trace { display: none;}
  9. </style>
  10. <script type="text/javascript">
  11. <!--
  12. function flip(e) {
  13. current = e.style.display;
  14. if (current == 'block') {
  15. e.style.display = 'none';
  16. return 0;
  17. }
  18. else {
  19. e.style.display = 'block';
  20. return 1;
  21. }
  22. }
  23. function toggleBox(szDivId, elem, msg1, msg2)
  24. {
  25. var res = -1; if (document.getElementById) {
  26. res = flip(document.getElementById(szDivId));
  27. }
  28. else if (document.all) {
  29. // this is the way old msie versions work
  30. res = flip(document.all[szDivId]);
  31. }
  32. if(elem) {
  33. if(res == 0) elem.innerHTML = msg1; else elem.innerHTML = msg2;
  34. }
  35. }
  36. function toggleAllBoxes() {
  37. if (document.getElementsByTagName) {
  38. d = document.getElementsByTagName('div');
  39. for (i = 0; i < d.length; i++) {
  40. if (d[i].className == 'log') {
  41. flip(d[i]);
  42. }
  43. }
  44. }
  45. }
  46. // -->
  47. </script>
  48. </head>
  49. <body>
  50. <h2 align='center'>Default test</h2><table border='1' align="center">
  51. <tr>
  52. <td>Tests passed/Failed/Skipped:</td><td>0/0/0</td>
  53. </tr><tr>
  54. <td>Started on:</td><td>Mon Dec 08 22:07:11 CET 2014</td>
  55. </tr>
  56. <tr><td>Total time:</td><td>0 seconds (5 ms)</td>
  57. </tr><tr>
  58. <td>Included groups:</td><td></td>
  59. </tr><tr>
  60. <td>Excluded groups:</td><td></td>
  61. </tr>
  62. </table><p/>
  63. <small><i>(Hover the method name to see the test class name)</i></small><p/>
  64. </body>
  65. </html>