diff options
author | javalizard <> | 2010-04-17 04:36:46 +0000 |
---|---|---|
committer | javalizard <> | 2010-04-17 04:36:46 +0000 |
commit | 34fb3ab1cbceb2e739578398748ded5524c46ad2 (patch) | |
tree | abf5175f9e9785ea71be1a04076f05b9fa55013e /tests/unit/Collections/TListTest.php | |
parent | 0b7c1b5adb708eafd79fb77ea2e534ef158b59aa (diff) |
Added Unit tests for insertBefore/After. Change code to expected behavior.
Diffstat (limited to 'tests/unit/Collections/TListTest.php')
-rw-r--r-- | tests/unit/Collections/TListTest.php | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/tests/unit/Collections/TListTest.php b/tests/unit/Collections/TListTest.php index 7b0c74c3..26f05e6f 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->list->insertBefore($this->item1,$this->item3); + $this->assertEquals($this->list,$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->list->insertAfter($this->item2,$this->item3); + $this->assertEquals($this->list,$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)); @@ -104,10 +104,14 @@ class TListTest extends PHPUnit_Framework_TestCase { $list = new TList(array(), true); try { $list->insertAt(1, 2); + self::fail('An expected TInvalidOperationException was not raised'); + } catch(TInvalidOperationException $e) { + } + try { + $list->insertAt(0, 2); + self::fail('An expected TInvalidOperationException was not raised'); } catch(TInvalidOperationException $e) { - return; } - self::fail('An expected TInvalidOperationException was not raised'); } public function testRemove() { |