summaryrefslogtreecommitdiff
path: root/tests/unit/Collections
diff options
context:
space:
mode:
authorctrlaltca@gmail.com <>2011-06-20 16:49:53 +0000
committerctrlaltca@gmail.com <>2011-06-20 16:49:53 +0000
commita0d269954534e09c0b9c0f73c927b6eb764c21d9 (patch)
tree16dd9eba670fb6cca0e787ce5b715985bcca63b7 /tests/unit/Collections
parent444579affdb1d09813b2be89a59c4f10c8f4ba9b (diff)
some fixes on tests
Diffstat (limited to 'tests/unit/Collections')
-rw-r--r--tests/unit/Collections/TPagedListTest.php2
-rw-r--r--tests/unit/Collections/TQueueTest.php2
-rw-r--r--tests/unit/Collections/TStackTest.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/Collections/TPagedListTest.php b/tests/unit/Collections/TPagedListTest.php
index 2f1b40cc..72eabc31 100644
--- a/tests/unit/Collections/TPagedListTest.php
+++ b/tests/unit/Collections/TPagedListTest.php
@@ -172,7 +172,7 @@ class TPagedListTest extends PHPUnit_Framework_TestCase {
public function testGetIterator() {
$list = new TPagedList(array(1, 2));
$list->CustomPaging = true;
- self::assertType('ArrayIterator', $list->getIterator());
+ self::assertInstanceOf('ArrayIterator', $list->getIterator());
$n = 0;
$found = 0;
foreach($list as $index => $item) {
diff --git a/tests/unit/Collections/TQueueTest.php b/tests/unit/Collections/TQueueTest.php
index c5ec2b6b..167be249 100644
--- a/tests/unit/Collections/TQueueTest.php
+++ b/tests/unit/Collections/TQueueTest.php
@@ -96,7 +96,7 @@ class TQueueTest extends PHPUnit_Framework_TestCase {
public function testGetIterator() {
$queue = new TQueue(array(1, 2));
- self::assertType('ArrayIterator', $queue->getIterator());
+ self::assertInstanceOf('ArrayIterator', $queue->getIterator());
$n = 0;
$found = 0;
foreach($queue as $index => $item) {
diff --git a/tests/unit/Collections/TStackTest.php b/tests/unit/Collections/TStackTest.php
index 77fb1c97..26406f36 100644
--- a/tests/unit/Collections/TStackTest.php
+++ b/tests/unit/Collections/TStackTest.php
@@ -96,7 +96,7 @@ class TStackTest extends PHPUnit_Framework_TestCase {
public function testGetIterator() {
$stack = new TStack(array(1, 2));
- self::assertType('ArrayIterator', $stack->getIterator());
+ self::assertInstanceOf('ArrayIterator', $stack->getIterator());
$n = 0;
$found = 0;
foreach($stack as $index => $item) {