Test Driven Developement
Last updated
Last updated
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>TDD Practice</title>
<link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-1.20.0.css">
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="http://code.jquery.com/qunit/qunit-1.20.0.js"></script>
<script src="main.js"></script>
<script src="tests.js"></script>
</body>
</html> QUnit.test("hello test", function( assert ) {
assert.ok( 1 == "1", "Passed!" );
});
QUnit.test('max', function (assert) {
});
QUnit.test('isOdd', function (assert) {
});