summaryrefslogtreecommitdiff
path: root/tests/simple_unit/Tickets
diff options
context:
space:
mode:
Diffstat (limited to 'tests/simple_unit/Tickets')
-rw-r--r--tests/simple_unit/Tickets/Ticket589Test.php20
-rw-r--r--tests/simple_unit/Tickets/sqlmap.xml21
2 files changed, 0 insertions, 41 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);
- }
- }
-}
diff --git a/tests/simple_unit/Tickets/sqlmap.xml b/tests/simple_unit/Tickets/sqlmap.xml
deleted file mode 100644
index 81918fbc..00000000
--- a/tests/simple_unit/Tickets/sqlmap.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<sqlmap>
-
- <statement
- id="findNotVisitedWatchedTopicList"
- resultClass="TopicRecord"
- parametrClass="array"
- >
- <![CDATA[
- SELECT rt.*
- FROM rbx_watched_topic as rwt
- LEFT JOIN rbx_topic as rt
- ON rwt.topic_id = rt.topic_id
- WHERE user_id = #user_id# AND
- ( rt.created > #last_visit# OR
- rt.modified > #last_visit# OR
- rwt.visited = 0 )
- ORDER BY rt.title ASC
- ]]>
- </statement>
-
-</sqlmap> \ No newline at end of file