assert.js
1.17 KB
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
var testResults = {
passed: 0,
failed: 0
};
phantom.Casper.extend({
assert: function(condition, message) {
var status = '[PASS]';
if (condition === true) {
testResults.passed++;
} else {
status = '[FAIL]';
testResults.failed++;
}
this.echo([status, message].join(' '));
},
assertEquals: function(testValue, expected, message) {
if (expected === testValue) {
this.echo('[PASS] ' + message);
testResults.passed++;
} else {
this.echo('[FAIL] ' + message);
this.echo(' got: ' + testValue);
this.echo(' expected: ' + expected);
testResults.failed++;
}
},
assertEvalEquals: function(fn, expected, message) {
return this.assertEquals(this.evaluate(fn), expected, message);
},
renderResults: function() {
this.echo("==========================================");
var total = testResults.passed + testResults.failed;
this.echo(total + ' tests executed, ' + testResults.passed + ' passed, ' + testResults.failed + ' failed.');
this.exit();
}
});