-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-plain.html
49 lines (38 loc) · 1.61 KB
/
test-plain.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>PureMVC TypeScript - plain</title>
<!-- Needed by YUITest Unit Test Framework Library -->
<link type="text/css" rel="stylesheet" href="test/lib/fonts-min.css" />
<script type="text/javascript" src="test/lib/yui-min.js"></script>
<script type="text/javascript" src="test/lib/yuitest_1.0.0b1.js"></script>
<!-- Home Made Test Runner -->
<link type="text/css" rel="stylesheet" href="test/lib/testrunner.css" />
<script type="text/javascript" src="test/lib/testrunner.js"></script>
<!-- Needed to mark tests with classes extraction -->
<script type="text/javascript" src="test/lib/typescript-extract.js"></script>
<!--
We need to respect an order for classes declaration
to allow classes to use their dependencies.
-->
<script type="text/javascript" src="src-js/org/opus/signals/Signal.js"></script>
<script type="text/javascript" src="src-js/org/opus/signals/SignalBinding.js"></script>
<!-- PureMVC Framework Unit Test Cases -->
<script type="text/javascript" src="test/src-js/org/opus/signals/SignalsTest.js"></script>
</head>
<body class="yui3-skin-sam yui-skin-sam">
<h1>PureMVC TypeScript Objs - plain</h1>
<div id="testLogger" class="yui3-skin-sam"></div>
<script type="text/javascript">
runTests
(
"PureMVC JavaScript Objs - plain",
[
SignalsTest
]
);
</script>
</body>
</html>