summaryrefslogtreecommitdiff
path: root/tests/simple_unit/Tickets/Ticket589Test.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/simple_unit/Tickets/Ticket589Test.php')
-rw-r--r--tests/simple_unit/Tickets/Ticket589Test.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/simple_unit/Tickets/Ticket589Test.php b/tests/simple_unit/Tickets/Ticket589Test.php
deleted file mode 100644
index 487181ff..00000000
--- a/tests/simple_unit/Tickets/Ticket589Test.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?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);
- }
- }
-}