summaryrefslogtreecommitdiff
path: root/tests/unit/Collections
diff options
context:
space:
mode:
authorxue <>2006-10-23 12:08:11 +0000
committerxue <>2006-10-23 12:08:11 +0000
commite4c9e8e311dc09424e4b865f53a0a6fe6872c4e6 (patch)
tree094321633b3d900a83dd1b01864fb9010173a72c /tests/unit/Collections
parent5dd2b03677b8937f704cc263bf78d6174a0fe00e (diff)
merge from 3.0 branch till 1475.
Diffstat (limited to 'tests/unit/Collections')
-rw-r--r--tests/unit/Collections/TListTest.php2
-rw-r--r--tests/unit/Collections/TMapTest.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/Collections/TListTest.php b/tests/unit/Collections/TListTest.php
index c9190da6..e090728c 100644
--- a/tests/unit/Collections/TListTest.php
+++ b/tests/unit/Collections/TListTest.php
@@ -185,7 +185,7 @@ class TListTest extends PHPUnit2_Framework_TestCase {
}
public function testArrayMisc() {
- $this->assertEquals(1,count($this->list));
+ $this->assertEquals($this->list->Count,count($this->list));
$this->assertTrue(isset($this->list[1]));
$this->assertFalse(isset($this->list[2]));
}
diff --git a/tests/unit/Collections/TMapTest.php b/tests/unit/Collections/TMapTest.php
index af92fd6a..f7661afd 100644
--- a/tests/unit/Collections/TMapTest.php
+++ b/tests/unit/Collections/TMapTest.php
@@ -146,7 +146,7 @@ class TMapTest extends PHPUnit2_Framework_TestCase {
public function testArrayMisc()
{
- $this->assertEquals(1,count($this->map));
+ $this->assertEquals($this->map->Count,count($this->map));
$this->assertTrue(isset($this->map['key1']));
$this->assertFalse(isset($this->map['unknown key']));
}