summaryrefslogtreecommitdiff
path: root/tests/simple_unit/Tickets/Ticket589Test.php
diff options
context:
space:
mode:
authorwei <>2007-05-10 03:22:04 +0000
committerwei <>2007-05-10 03:22:04 +0000
commitef2fc3942664d4d7131542080e838f7754a3081f (patch)
treefab3192f13bf9526ed612f8a1600aa1fd6f882bf /tests/simple_unit/Tickets/Ticket589Test.php
parent0301d3a65dec4d4b35d3fe9bfbe33728a4d05f48 (diff)
Add unit test code for #589.
Diffstat (limited to 'tests/simple_unit/Tickets/Ticket589Test.php')
-rw-r--r--tests/simple_unit/Tickets/Ticket589Test.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/simple_unit/Tickets/Ticket589Test.php b/tests/simple_unit/Tickets/Ticket589Test.php
new file mode 100644
index 00000000..26f4f7ed
--- /dev/null
+++ b/tests/simple_unit/Tickets/Ticket589Test.php
@@ -0,0 +1,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);
+ }
+ }
+}
+
+?> \ No newline at end of file