From 322bb9cd2be9e51422cb2b82684692e825c2bfb7 Mon Sep 17 00:00:00 2001 From: brettp Date: Fri, 2 Oct 2009 18:40:04 +0000 Subject: Added simpletest and start of unit tests. git-svn-id: http://code.elgg.org/elgg/trunk@3503 36083f99-b078-4883-b0ff-0f9b5a30f544 --- vendors/simpletest/test/adapter_test.php | 77 ++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100755 vendors/simpletest/test/adapter_test.php (limited to 'vendors/simpletest/test/adapter_test.php') diff --git a/vendors/simpletest/test/adapter_test.php b/vendors/simpletest/test/adapter_test.php new file mode 100755 index 000000000..f4564ea87 --- /dev/null +++ b/vendors/simpletest/test/adapter_test.php @@ -0,0 +1,77 @@ +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'); + } +} +?> \ No newline at end of file -- cgit v1.2.3