From 51083f666005194dbed2e6963c823c08393a3a80 Mon Sep 17 00:00:00 2001 From: xue <> Date: Fri, 11 Nov 2005 22:45:22 +0000 Subject: Enhanced page service configuration parsing. Content included between opening and closing page service tag in app config is now parsed. --- tests/UnitTests/framework/utComponent.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests') diff --git a/tests/UnitTests/framework/utComponent.php b/tests/UnitTests/framework/utComponent.php index 2683652a..07be4577 100644 --- a/tests/UnitTests/framework/utComponent.php +++ b/tests/UnitTests/framework/utComponent.php @@ -110,15 +110,15 @@ class utComponent extends UnitTestCase } } - public function testGetPropertyByPath() + public function testGetSubProperty() { - $this->assertTrue('object text'===$this->component->getPropertyByPath('Object.Text')); + $this->assertTrue('object text'===$this->component->getSubProperty('Object.Text')); } - public function testSetPropertyByPath() + public function testSetSubProperty() { - $this->component->setPropertyByPath('Object.Text','new object text'); - $this->assertEqual('new object text',$this->component->getPropertyByPath('Object.Text')); + $this->component->setSubProperty('Object.Text','new object text'); + $this->assertEqual('new object text',$this->component->getSubProperty('Object.Text')); } public function testHasEvent() -- cgit v1.2.3