diff options
author | xue <> | 2005-11-11 22:45:22 +0000 |
---|---|---|
committer | xue <> | 2005-11-11 22:45:22 +0000 |
commit | 51083f666005194dbed2e6963c823c08393a3a80 (patch) | |
tree | ea9c175659a0e0ad3036e2930ed048cf188dee0b /tests/UnitTests/framework/utComponent.php | |
parent | cb9ad614fe9e811a1565878ffbfb37803fa30486 (diff) |
Enhanced page service configuration parsing. Content included between opening and closing page service tag in app config is now parsed.
Diffstat (limited to 'tests/UnitTests/framework/utComponent.php')
-rw-r--r-- | tests/UnitTests/framework/utComponent.php | 10 |
1 files changed, 5 insertions, 5 deletions
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()
|