summaryrefslogtreecommitdiff
path: root/tests/php/phpt/valueiterator/006.phpt
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-18 23:35:35 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-18 23:35:35 +0100
commit778561e1739a4a7ef20e85b713b4790e6be225d3 (patch)
treed1ff42f6b6f8d6aa68f88319506aba91394aded0 /tests/php/phpt/valueiterator/006.phpt
parentbfaed88493de0a3ebd7f2619cb11291cd09252b1 (diff)
parentda5521c2c168edc48e7d2b5dd12305c9dec85b7b (diff)
Merge pull request #44 from valmat/unit-test
Unit tests
Diffstat (limited to 'tests/php/phpt/valueiterator/006.phpt')
-rw-r--r--tests/php/phpt/valueiterator/006.phpt21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/php/phpt/valueiterator/006.phpt b/tests/php/phpt/valueiterator/006.phpt
new file mode 100644
index 0000000..d31cdda
--- /dev/null
+++ b/tests/php/phpt/valueiterator/006.phpt
@@ -0,0 +1,21 @@
+--TEST--
+Iterate itarable oblect
+--DESCRIPTION--
+class impIterAggr1 implements IteratorAggregate
+--SKIPIF--
+<?php if (!extension_loaded("extention_for_tests")) print "skip"; ?>
+--FILEEOF--
+<?php
+require dirname(__FILE__) . '/../../include/valueiterator/1.php';
+
+$iag2 = new impIterAggr2;
+
+TestValueIterator\loopValue($iag2);
+
+--EXPECT--
+Array/Object contains 0 items
+[key_0]=firstElement
+[key_1]=secondElement
+[key_2]=lastelEment
+~impIterAggr2
+~impIterator \ No newline at end of file