summaryrefslogtreecommitdiff
path: root/tests/unit/Data/TableGateway/TableInfoGatewayTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/Data/TableGateway/TableInfoGatewayTest.php')
-rw-r--r--tests/unit/Data/TableGateway/TableInfoGatewayTest.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/unit/Data/TableGateway/TableInfoGatewayTest.php b/tests/unit/Data/TableGateway/TableInfoGatewayTest.php
new file mode 100644
index 00000000..24b94690
--- /dev/null
+++ b/tests/unit/Data/TableGateway/TableInfoGatewayTest.php
@@ -0,0 +1,19 @@
+<?php
+
+require_once(dirname(__FILE__).'/BaseGatewayTest.php');
+
+/**
+ * @package System.Data.TableGateway
+ */
+class TableInfoGatewayTest extends BaseGatewayTest
+{
+ function test_table_info()
+ {
+ $conn = $this->getGateway()->getDbConnection();
+ $this->add_record1();
+ $this->add_record2();
+ $info = TDbMetaData::getInstance($conn)->getTableInfo('address');
+ $table = new TTableGateway($info, $conn);
+ $this->assertEqual(count($table->findAll()->readAll()), 2);
+ }
+} \ No newline at end of file