From 851fd35934d4792a945145ce9f7da9347c06ba89 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Wed, 16 Aug 2006 03:05:53 +0000 Subject: [PATCH] assertEquals() does not exist! --- UnitTest/RegisterTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/UnitTest/RegisterTest.php b/UnitTest/RegisterTest.php index 4383ed7..990ab8d 100644 --- a/UnitTest/RegisterTest.php +++ b/UnitTest/RegisterTest.php @@ -24,26 +24,26 @@ class RegisterTest extends UnitTestCase public function testSetGetAppPath() { $this->fixture->setAppPath(getcwd()); - $this->assertEquals(getcwd() . DIRECTORY_SEPARATOR, $this->fixture->getAppPath()); + $this->assertEqual(getcwd() . DIRECTORY_SEPARATOR, $this->fixture->getAppPath()); } public function testSetGetAppVersion() { $this->fixture->setAppVersion('1.0-test'); - $this->assertEquals('1.0-test', $this->fixture->getAppVersion()); + $this->assertEqual('1.0-test', $this->fixture->getAppVersion()); } public function testSetGetApplication() { $this->fixture->setApplication('ISSO Tests'); - $this->assertEquals('ISSO Tests', $this->fixture->getApplication()); + $this->assertEqual('ISSO Tests', $this->fixture->getApplication()); } public function testSetGetWebPath() { $path = DIRECTORY_SEPARATOR . 'Server' . DIRECTORY_SEPARATOR . 'htdocs' . DIRECTORY_SEPARATOR . 'ISSO'; $this->fixture->setWebPath($path); - $this->assertEquals($path . DIRECTORY_SEPARATOR, $this->fixture->getWebPath()); + $this->assertEqual($path . DIRECTORY_SEPARATOR, $this->fixture->getWebPath()); } public function testSetGetDebug() -- 2.22.5