From 3d3f8d3832921f99daf8ce1953304763c2e76c62 Mon Sep 17 00:00:00 2001 From: wei <> Date: Fri, 14 Apr 2006 06:22:09 +0000 Subject: Importing SQLMap + sample + docs. --- tests/UnitTests/simpletest/test/adapter_test.php | 74 ------------------------ 1 file changed, 74 deletions(-) delete mode 100644 tests/UnitTests/simpletest/test/adapter_test.php (limited to 'tests/UnitTests/simpletest/test/adapter_test.php') diff --git a/tests/UnitTests/simpletest/test/adapter_test.php b/tests/UnitTests/simpletest/test/adapter_test.php deleted file mode 100644 index d7f67caf..00000000 --- a/tests/UnitTests/simpletest/test/adapter_test.php +++ /dev/null @@ -1,74 +0,0 @@ -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->assertTrue($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", "PEAR regex"); - } - } -?> \ No newline at end of file -- cgit v1.2.3