summaryrefslogtreecommitdiff
path: root/tests/unit/SQLMap/ConfigureTest.php
blob: 84c77c0ea1294c8df8ae9b264de277faa2f93915 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

require_once(dirname(__FILE__).'/BaseTest.php');

/**
 * @package System.DataAccess.SQLMap
 */
class ConfigureTest extends BaseTest
{

	function testConfigureAbsolutePath()
	{
		$builder = new TDomSqlMapBuilder;
		$filename = realpath(dirname(__FILE__).'/resources/sqlmap.xml');
		$sqlmap = $builder->configure($filename);
		$this->assertNotNull($sqlmap);
	}
}

?>