-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestSuite.html
More file actions
43 lines (38 loc) · 1.6 KB
/
TestSuite.html
File metadata and controls
43 lines (38 loc) · 1.6 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>TS_Linq_TestSuite</title>
<!-- jQuery, qUnit and qUnit-once setup -->
<link href="./Scripts/qunit-2.0.0.css" rel="stylesheet" />
<script src="./Scripts/jquery-3.0.0.js"></script>
<script src="./Scripts/qunit-2.0.0.js"></script>
<!-- Library references -->
<script src="../TypeScript-Base/TS-Base.js"></script>
<script src="http://localhost:58512/TS-Base.js"></script>
<script src="../TypeScript-Linq/TS-Linq.js"></script>
<script src="http://localhost:58656/TS-Linq.js"></script>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<!-- Test data -->
<script src="./DATA.js"></script>
<!-- List of all test programs to run -->
<script src="Collections_Dictionary_test.js"></script>
<script src="Collections_Dictionary_test_plain.js"></script>
<script src="Collections_List_test.js"></script>
<script src="Collections_List_test_plain.js"></script>
<script src="Exception_test.js"></script>
<script src="Linq_Enumerator_test.js"></script>
<script src="Linq_Enumerator_test_plainjs.js"></script>
<script src="Linq_Extensions_test.js"></script>
<script src="Linq_Extensions_test_plainjs.js"></script>
<script src="Linq_OrderedEnumerator_test.js"></script>
<script src="Linq_OrderedEnumerator_test_plainjs.js"></script>
<script src="Utils_test.js"></script>
<script src="Utils_test_plainjs.js"></script>
<script src="Utils_Assert_test.js"></script>
<script src="TypeCode_UInt64_test.js"></script>
</body>
</html>