adding unit tests and functional tests. Need to add more tests when possible.

This commit is contained in:
Eric Rowell
2012-03-08 00:05:00 -08:00
parent 3525aecf6b
commit 54d8006362
7 changed files with 1797 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" type="text/css"href="base.css">
<script src="../dist/kinetic-v3.8.3.js"></script>
<script src="functionalTests.js"></script>
<script src="testMethods.js"></script>
<script>
window.onload = function() {
var test = new Test();
test.run();
};
</script>
</head>
<body onmousedown="return false;"></body>
</html>