52 lines
1.5 KiB
PHP
52 lines
1.5 KiB
PHP
<?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');
|
|
}
|
|
}
|
|
?>
|