This repository has been archived by the owner on Jul 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
tests.js
58 lines (45 loc) · 2.1 KB
/
tests.js
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
QUnit.module('QUnit の使い方', function () {
QUnit.module('基礎編', function () {
QUnit.test('assert.ok の使い方', function (assert) {
var truth = true;
assert.ok(truth, 'assert.ok は引数が truthy であるかどうかを検証します');
var falsy = null;
assert.ok(!falsy);
});
// QUnit の assert.equal 系は引数の順番が actual, expected の順(JUnit の逆)なので注意してください
QUnit.test('equal, notEqual の使い方', function (assert) {
assert.equal('hoge', 'hoge');
assert.equal(1, '1', 'equal は == を使います');
assert.notEqual('foo', 'bar');
});
QUnit.test('strictEqual, notStrictEqual の使い方', function (assert) {
assert.strictEqual('1', '1');
assert.notStrictEqual(1, '1', 'strictEqual は === を使います');
});
QUnit.test('deepEqual, notDeepEqual の使い方', function (assert) {
var ary = ['foo', 'bar'];
assert.deepEqual(ary.map(function (str){
return str.toUpperCase();
}), ['FOO', 'BAR'], 'Array の比較を行えます');
var o1 = {name: 'foo', age: 20};
var o2 = {age: 20, name: 'foo'};
assert.deepEqual(o1, o2, 'オブジェクト同士の比較もできます');
var o3 = {name: 'bar', age: 32};
assert.notDeepEqual(o1, o3);
});
});
QUnit.module('応用編', function () {
QUnit.test('例外のテストの書き方', function (assert) {
assert.throws(function () {
throw new Error('例外');
}, 'throws で例外が投げられることをテストできます');
});
QUnit.test('非同期のテストの書き方', function (assert) {
var done = assert.async();
setTimeout(function () {
assert.equal('hoge', 'hoge', '100ミリ秒後にこの比較が行われています');
done();
}, 100);
});
});
});