blob: a6a61f8d4541ea0e7430ce66074c23310074bf5d (
plain)
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
|
<?php
// $Id: unit_tester_test.php,v 1.3 2005/02/18 22:40:58 lastcraft Exp $
class TestOfUnitTester extends UnitTestCase {
function testAssertTrueReturnsAssertionAsBoolean() {
$this->assertTrue($this->assertTrue(true));
}
function testAssertFalseReturnsAssertionAsBoolean() {
$this->assertTrue($this->assertFalse(false));
}
function testAssertEqualReturnsAssertionAsBoolean() {
$this->assertTrue($this->assertEqual(5, 5));
}
function testAssertIdenticalReturnsAssertionAsBoolean() {
$this->assertTrue($this->assertIdentical(5, 5));
}
function testCoreAssertionsDoNotThrowErrors() {
$this->assertIsA($this, 'UnitTestCase');
$this->assertNotA($this, 'WebTestCase');
}
}
class JBehaveStyleRunner extends SimpleRunner {
function JBehaveStyleRunner(&$test_case, &$scorer) {
$this->SimpleRunner($test_case, $scorer);
}
function _isTest($method) {
return strtolower(substr($method, 0, 6)) == 'should';
}
}
class TestOfJBehaveStyleRunner extends UnitTestCase {
function &_createRunner(&$reporter) {
return new JBehaveStyleRunner($this, $reporter);
}
function testFail() {
$this->fail('This should not be run');
}
function shouldBeRun() {
$this->pass('This should be run');
}
}
?>
|