summaryrefslogtreecommitdiff
path: root/tests/unit/Data/TableGateway/TableInfoGatewayTest.php
blob: 24b9469058cbf2bc90d16e810613c051367e9708 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);
	}
}