diff options
author | wei <> | 2006-01-06 04:40:33 +0000 |
---|---|---|
committer | wei <> | 2006-01-06 04:40:33 +0000 |
commit | ab5bd4f0f9e5b76a219a8b3d353ce32d9255edb9 (patch) | |
tree | 79429edebb1ce48623b93d90cf0e37e59a02c53c /tests/FunctionalTests/protected/pages/I18N/BasicI18N.php | |
parent | 3b11f3555426a50664e130148fa37e18b8098e28 (diff) |
Adding BasicI18N tests
Diffstat (limited to 'tests/FunctionalTests/protected/pages/I18N/BasicI18N.php')
-rw-r--r-- | tests/FunctionalTests/protected/pages/I18N/BasicI18N.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/FunctionalTests/protected/pages/I18N/BasicI18N.php b/tests/FunctionalTests/protected/pages/I18N/BasicI18N.php new file mode 100644 index 00000000..50d493d8 --- /dev/null +++ b/tests/FunctionalTests/protected/pages/I18N/BasicI18N.php @@ -0,0 +1,34 @@ +<?php
+
+/**
+ * ${classname}
+ *
+ * ${description}
+ *
+ * @author Wei Zhuo<weizhuo[at]gmail[dot]com>
+ * @version $Revision: 1.66 $ $Date: ${DATE} ${TIME} $
+ * @package ${package}
+ */
+class BasicI18N extends TPage
+{
+}
+
+/**
+ * ${classname}
+ *
+ * ${description}
+ *
+ * @author Wei Zhuo<weizhuo[at]gmail[dot]com>
+ * @version $Revision: 1.66 $ $Date: ${DATE} ${TIME} $
+ * @package ${package}
+ */
+class BasicI18NTestCase extends SeleniumTestCase
+{
+ function testI18N()
+ {
+ $page = Prado::getApplication()->getTestPage(__FILE__);
+ $this->open($page);
+ }
+}
+
+?>
\ No newline at end of file |