unittests/index.html
author hamidouk
Tue, 11 Oct 2011 17:15:23 +0200
branchpopcorn-port
changeset 63 acf10cf0ebd1
parent 57 eabfc9a2eb35
child 65 6a8cae20f190
permissions -rw-r--r--
added sinon.js mocking library to the project

<html>
<head>
	<title>Unit Tests</title>
	<script src="http://code.jquery.com/jquery-latest.js"></script>
	<script src="../build/LdtPlayer-release.js"></script>
	<script src="qunit.js" type="text/javascript"></script>
	<script src="sinon.js" type="text/javascript"></script>
	<script src="sinon-ie.js" type="text/javascript"></script>
	<script src="sinon-qunit.js" type="text/javascript"></script>
	  <link rel="stylesheet" href="qunit.css" type="text/css" media="screen" />
	<script src="tests/dataloader.js" type="text/javascript"></script>
	<script src="tests/serializer.js" type="text/javascript"></script>
</head>
<body>
<script>
 $(document).ready(function(){
		test_dataloader();
		test_serializer();
});
</script>	
<body>
  <h1 id="qunit-header">Metadataplayer Unit Tests</h1>
 <h2 id="qunit-banner"></h2>
 <div id="qunit-testrunner-toolbar"></div>
 <h2 id="qunit-userAgent"></h2>
 <ol id="qunit-tests"></ol>
 <div id="qunit-fixture">test markup, will be hidden</div>
</body>
</html>