diff options
author | wei <> | 2007-04-12 08:05:03 +0000 |
---|---|---|
committer | wei <> | 2007-04-12 08:05:03 +0000 |
commit | dc3bf922d9715bfd1b2105be04a9aabc84a1d7d4 (patch) | |
tree | ff97362f718b6ebb482128527402efe03fe1ac43 /tests/simple_unit/I18N/MysqlMessageSourceTestCase.php | |
parent | 6178a99df0c722581bc61e35559ac5f8af1cc6e8 (diff) |
Refactor and add TTableGateway, System.Data.Common, System.Data.DataGateway
Diffstat (limited to 'tests/simple_unit/I18N/MysqlMessageSourceTestCase.php')
-rw-r--r-- | tests/simple_unit/I18N/MysqlMessageSourceTestCase.php | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/simple_unit/I18N/MysqlMessageSourceTestCase.php b/tests/simple_unit/I18N/MysqlMessageSourceTestCase.php new file mode 100644 index 00000000..9f48d499 --- /dev/null +++ b/tests/simple_unit/I18N/MysqlMessageSourceTestCase.php @@ -0,0 +1,43 @@ +<?php
+
+Prado::using('System.I18N.core.MessageSource_MySQL');
+Prado::using('System.I18N.core.MessageFormat');
+
+class MysqlMessageSourceTestCase extends UnitTestCase
+{
+ private $_source;
+
+ function get_source()
+ {
+ if($this->_source===null)
+ {
+ $this->_source = new MessageSource_MySQL('mysq://prado:prado@localhost/i18n_test');
+ $this->_source->setCulture('en_AU');
+ }
+ return $this->_source;
+ }
+
+ function test_source()
+ {
+ $source = $this->get_source();
+ $this->assertEqual(3, count($source->catalogues()));
+ }
+
+ function test_load_source()
+ {
+ $source = $this->get_source();
+ $this->assertTrue($source->load());
+ }
+
+ function test_message_format()
+ {
+ $formatter = new MessageFormat($this->get_source());
+ var_dump($formatter->format('Hello'));
+ var_dump($formatter->format('Goodbye'));
+ //$this->assertEqual($formatter->format('Hello'),'G\'day Mate!');
+
+ //$this->assertEqual($formatter->format('Goodbye'), 'Goodbye');
+ }
+}
+
+?>
\ No newline at end of file |