javascript/JQunit

JQunit 사용하기 09

top2blue 2015. 7. 24. 16:20
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>QUnit Example01</title>
    <link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-1.18.0.css">
    <script src="http://code.jquery.com/qunit/qunit-1.18.0.js"></script>
    <script>
        QUnit.test( "deepEqual test"function( assert ) {
            var obj = { foo: "bar" };
            assert.deepEqual( obj, { foo: "bar" }, "두객체는 같다." );
        });
  </script>
</head>
<body>
    <!-- 아래의 코드를 넣는다 -->
    <div id="qunit"></div>
    <div id="qunit-fixture"></div>
</body>
</html>
cs