javascript/JQunit
JQunit 사용하기 08
top2blue
2015. 7. 24. 16:19
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 | <!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( "equal test", function( assert ) { // 성공 assert.equal( 0, 0, "Zero, Zero; equal succeeds" ); assert.equal( "", 0, "Empty, Zero; equal succeeds" ); assert.equal( "", "", "Empty, Empty; equal succeeds" ); assert.equal( 0, false, "Zero, false; equal succeeds" ); // 실 assert.equal( "three", 3, "Three, 3; equal fails" ); assert.equal( null, false, "null, false; equal fails" ); }); </script> </head> <body> <!-- 아래의 코드를 넣는다 --> <div id="qunit"></div> <div id="qunit-fixture"></div> </body> </html> | cs |