summaryrefslogtreecommitdiff
path: root/tests/simple_unit/SqlMap/domain/Document.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/simple_unit/SqlMap/domain/Document.php')
-rw-r--r--tests/simple_unit/SqlMap/domain/Document.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/simple_unit/SqlMap/domain/Document.php b/tests/simple_unit/SqlMap/domain/Document.php
new file mode 100644
index 00000000..63bcfd33
--- /dev/null
+++ b/tests/simple_unit/SqlMap/domain/Document.php
@@ -0,0 +1,16 @@
+<?php
+
+class Document
+{
+ private $_ID='';
+ private $_Title='';
+
+ public function getID(){ return $this->_ID; }
+ public function setID($value){ $this->_ID = $value; }
+
+ public function getTitle(){ return $this->_Title; }
+ public function setTitle($value){ $this->_Title = $value; }
+
+}
+
+?> \ No newline at end of file