summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorjavalizard <>2010-04-17 05:45:36 +0000
committerjavalizard <>2010-04-17 05:45:36 +0000
commit98c48b76b2fdf4b99c9fad1631e52d027b965be4 (patch)
tree38d9971e4231a882d2fc59c53af9bb89dda2cd74 /tests
parent34fb3ab1cbceb2e739578398748ded5524c46ad2 (diff)
Got the return value nailed down for TList::InsertBefore and TList::insertAfter using the unit test.
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/Collections/TListTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/Collections/TListTest.php b/tests/unit/Collections/TListTest.php
index 26f05e6f..e2ba654c 100644
--- a/tests/unit/Collections/TListTest.php
+++ b/tests/unit/Collections/TListTest.php
@@ -79,7 +79,7 @@ class TListTest extends PHPUnit_Framework_TestCase {
} catch(TInvalidDataValueException $e) {
}
$this->assertEquals(2,$this->list->getCount());
- $this->assertEquals($this->list,$this->list->insertBefore($this->item1,$this->item3));
+ $this->assertEquals(0,$this->list->insertBefore($this->item1,$this->item3));
$this->assertEquals(3,$this->list->getCount());
$this->assertEquals(0,$this->list->indexOf($this->item3));
$this->assertEquals(1,$this->list->indexOf($this->item1));
@@ -93,7 +93,7 @@ class TListTest extends PHPUnit_Framework_TestCase {
} catch(TInvalidDataValueException $e) {
}
$this->assertEquals(2,$this->list->getCount());
- $this->assertEquals($this->list,$this->list->insertAfter($this->item2,$this->item3));
+ $this->assertEquals(2,$this->list->insertAfter($this->item2,$this->item3));
$this->assertEquals(3,$this->list->getCount());
$this->assertEquals(0,$this->list->indexOf($this->item1));
$this->assertEquals(1,$this->list->indexOf($this->item2));