mirror of
https://github.com/zaphar/test-tap.git
synced 2025-07-21 20:19:49 -04:00

git-svn-id: https://test-tap.googlecode.com/svn/trunk@4 62346678-a08d-11dd-9c66-c9f8973bfffa
58 lines
1.3 KiB
HTML
58 lines
1.3 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
|
<script type="text/javascript" src="../ext/Test/TAP.js"></script>
|
|
<script type="text/javascript" src="../ext/Test/TAP/Class.js"></script>
|
|
</head>
|
|
<body>
|
|
<style type="text/css">
|
|
.test {
|
|
margin-top : 10px;
|
|
margin-bottom : 10px;
|
|
border : 3px;
|
|
border-style : inset;
|
|
overflow : auto;
|
|
}
|
|
|
|
.small {
|
|
height : 20px;
|
|
}
|
|
|
|
.big {
|
|
height : 600px;
|
|
}
|
|
|
|
.fail { background-color : red; }
|
|
.pass { background-color : green; }
|
|
|
|
</style>
|
|
<!--Test Description here -->
|
|
<script type="text/javascript">
|
|
var top = this;
|
|
/** Configuration options
|
|
*
|
|
*/
|
|
var tests = [
|
|
'<list test files here>',
|
|
];
|
|
// Change this to the path of your test scripts
|
|
var testlib = '.';
|
|
|
|
/** Setup
|
|
*
|
|
*/
|
|
var loc = String(top.location);
|
|
var results = [];
|
|
</script>
|
|
<script type="text/javascript" src="../ext/Test/TAPBrowser.js"></script>
|
|
<script type="text/javascript">
|
|
window.onload = function() {
|
|
var browser = new Test.TAPBrowser(".", tests);
|
|
browser.run();
|
|
};
|
|
</script>
|
|
</body>
|
|
</html>
|