diff options
author | xue <> | 2006-10-20 01:04:51 +0000 |
---|---|---|
committer | xue <> | 2006-10-20 01:04:51 +0000 |
commit | 2cde8e5fdc97489c0dae5e3f8acf6036229ec343 (patch) | |
tree | 7e2fca2d7d2ca194a300eb3320d953aed37b3131 /tests/unit/Collections | |
parent | 3b827980972fa2bb1cfdf7aaf2dadd94012a2ab1 (diff) |
Unit test fixes for collection classes due to implementation of Countable interface.
Diffstat (limited to 'tests/unit/Collections')
-rw-r--r-- | tests/unit/Collections/TListTest.php | 2 | ||||
-rw-r--r-- | tests/unit/Collections/TMapTest.php | 2 |
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'])); } |