blob: 26f4f7ed570b3cabc2fb9daaa9535e6bc2f69b25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
Prado::using('System.Data.SqlMap.TSqlMapManager');
class Ticket589Test extends UnitTestCase
{
function test()
{
$manager = new TSqlMapManager();
try
{
$manager->configureXml(dirname(__FILE__).'/sqlmap.xml');
$this->fail();
}catch(TSqlMapConfigurationException $e)
{
$expect = 'Invalid property \'parametrClass\' for class \'TSqlMapStatement\' for tag \'<statement id="findNotVisitedWatchedTopicList"';
$this->assertEqual(strpos($e->getMessage(),$expect),0);
}
}
}
?>
|