summaryrefslogtreecommitdiff
path: root/tests/php/include/valueiterator/1.php
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/include/valueiterator/1.php
parentbfaed88493de0a3ebd7f2619cb11291cd09252b1 (diff)
parentda5521c2c168edc48e7d2b5dd12305c9dec85b7b (diff)
Merge pull request #44 from valmat/unit-test
Unit tests
Diffstat (limited to 'tests/php/include/valueiterator/1.php')
-rw-r--r--tests/php/include/valueiterator/1.php76
1 files changed, 76 insertions, 0 deletions
diff --git a/tests/php/include/valueiterator/1.php b/tests/php/include/valueiterator/1.php
new file mode 100644
index 0000000..984a77f
--- /dev/null
+++ b/tests/php/include/valueiterator/1.php
@@ -0,0 +1,76 @@
+<?php
+
+class SimpleClass {
+ public $cl0_float = 3.14;
+ public $cl0_str1 = 'public str1';
+ private $cl0_str2 = 'private str2';
+ protected $cl0_str3 = 'protected str3';
+}
+
+class impIterator implements Iterator {
+ private $position = 0;
+ private $array = array(
+ "firstElement",
+ "secondElement",
+ "lastelEment",
+ );
+
+ public function __construct() {
+ $this->position = 0;
+ }
+
+ function rewind() {
+ $this->position = 0;
+ }
+
+ function current() {
+ return $this->array[$this->position];
+ }
+
+ function key() {
+ return 'key_' . $this->position;
+ }
+
+ function next() {
+ ++$this->position;
+ }
+
+ function valid() {
+ return isset($this->array[$this->position]);
+ }
+
+ function __destruct() {
+ echo "~impIterator\n";
+ }
+}
+
+class impIterAggr1 implements IteratorAggregate {
+ public function getIterator() {
+ return new ArrayIterator(new SimpleClass);
+ }
+ function __destruct() {
+ echo "~impIterAggr1\n";
+ }
+}
+
+class impIterAggr2 implements IteratorAggregate {
+ public function getIterator() {
+ return new impIterator();
+ }
+ function __destruct() {
+ echo "~impIterAggr2\n";
+ }
+}
+
+
+
+
+
+
+
+
+
+
+
+
+