diff options
author | ctrlaltca <> | 2012-07-12 11:21:01 +0000 |
---|---|---|
committer | ctrlaltca <> | 2012-07-12 11:21:01 +0000 |
commit | 903ae8a581fac1e6917fc3e31d2ad8fb91df80c3 (patch) | |
tree | e08bf04f0823650a231227ac3499121270172a23 /tests/simple_unit/Tickets | |
parent | 3e4e6e66aeb3f8fea4e1eb4237498ef9d2358f63 (diff) |
standardize the use of unix eol; use svn properties to enforce native eol
Diffstat (limited to 'tests/simple_unit/Tickets')
-rw-r--r-- | tests/simple_unit/Tickets/Ticket589Test.php | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/tests/simple_unit/Tickets/Ticket589Test.php b/tests/simple_unit/Tickets/Ticket589Test.php index 26f4f7ed..2fedda6f 100644 --- a/tests/simple_unit/Tickets/Ticket589Test.php +++ b/tests/simple_unit/Tickets/Ticket589Test.php @@ -1,22 +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);
- }
- }
-}
-
+<?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 |