#17528788 : unittest framework added

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6001 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2009-03-30 16:21:34 +00:00
parent ea7c87ec0d
commit 7619bce790
99 changed files with 31041 additions and 0 deletions

View file

@ -0,0 +1,77 @@
<?php
// $Id: adapter_test.php 1505 2007-04-30 23:39:59Z lastcraft $
require_once(dirname(__FILE__) . '/../autorun.php');
require_once(dirname(__FILE__) . '/../extensions/pear_test_case.php');
require_once(dirname(__FILE__) . '/../extensions/phpunit_test_case.php');
class SameTestClass {
}
class TestOfPearAdapter extends PHPUnit_TestCase {
function testBoolean() {
$this->assertTrue(true, "PEAR true");
$this->assertFalse(false, "PEAR false");
}
function testName() {
$this->assertTrue($this->getName() == get_class($this));
}
function testPass() {
$this->pass("PEAR pass");
}
function testNulls() {
$value = null;
$this->assertNull($value, "PEAR null");
$value = 0;
$this->assertNotNull($value, "PEAR not null");
}
function testType() {
$this->assertType("Hello", "string", "PEAR type");
}
function testEquals() {
$this->assertEquals(12, 12, "PEAR identity");
$this->setLooselyTyped(true);
$this->assertEquals("12", 12, "PEAR equality");
}
function testSame() {
$same = &new SameTestClass();
$this->assertSame($same, $same, "PEAR same");
}
function testRegExp() {
$this->assertRegExp('/hello/', "A big hello from me", "PEAR regex");
}
}
class TestOfPhpUnitAdapter extends TestCase {
function TestOfPhpUnitAdapter() {
$this->TestCase('TestOfPhpUnitAdapter');
}
function testBoolean() {
$this->assert(true, 'PHP Unit true');
}
function testName() {
$this->assert($this->name() == 'TestOfPhpUnitAdapter');
}
function testEquals() {
$this->assertEquals(12, 12, 'PHP Unit equality');
}
function testMultilineEquals() {
$this->assertEquals("a\nb\n", "a\nb\n", 'PHP Unit equality');
}
function testRegExp() {
$this->assertRegexp('/hello/', 'A big hello from me', 'PHPUnit regex');
}
}
?>