summaryrefslogtreecommitdiff
path: root/tests/unit/Data/SqlMap/domain/AccountCollection.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/Data/SqlMap/domain/AccountCollection.php')
-rw-r--r--tests/unit/Data/SqlMap/domain/AccountCollection.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/unit/Data/SqlMap/domain/AccountCollection.php b/tests/unit/Data/SqlMap/domain/AccountCollection.php
new file mode 100644
index 00000000..06e30dc8
--- /dev/null
+++ b/tests/unit/Data/SqlMap/domain/AccountCollection.php
@@ -0,0 +1,15 @@
+<?php
+
+class AccountCollection extends TList
+{
+ public function addRange($accounts)
+ {
+ foreach($accounts as $account)
+ $this->add($account);
+ }
+
+ public function copyTo(TList $array)
+ {
+ $array->copyFrom($this);
+ }
+}