-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTicTacToe_Test.html
28 lines (28 loc) · 1.28 KB
/
TicTacToe_Test.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="generator" content="CoffeeCup HTML Editor (www.coffeecup.com)">
<meta name="dcterms.created" content="Thu, 21 May 2015 01:24:09 GMT">
<meta name="description" content="">
<meta name="keywords" content="">
<title></title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://code.jquery.com/qunit/qunit-1.18.0.js"></script>
<script type="text/javascript" src="JS/TicTacToe/TicTacToeTests.js"></script>
<script type="text/javascript" src="JS/TicTacToe/RuleSet.js"></script>
<script type="text/javascript" src="JS/TicTacToe/Player.js"></script>
<script type="text/javascript" src="JS/TicTacToe/GameBoard.js"></script>
<script type="text/javascript" src="JS/TicTacToe/PlayerTurnManager.js"></script>
<script type="text/javascript" src="JS/TicTacToe/ModelController.js"></script>
<script type="text/javascript" src="JS/TicTacToe/PlayerFactory.js"></script>
<script type="text/javascript" src="JS/TicTacToe/DisplayAdapter.js"></script>
<!--[if IE]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
</body>
</html>