summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests
diff options
context:
space:
mode:
authorwei <>2006-01-29 04:54:31 +0000
committerwei <>2006-01-29 04:54:31 +0000
commit92a33ef250a55ec54b6c26c5611af77d999fb337 (patch)
tree5b539c7ce7e61eb5d05c495f375c8b202b1a2295 /tests/FunctionalTests
parentfe229dbb1a4fc2b5569063a6fefc3ca1c493a1b5 (diff)
Add I18N FT test.
Diffstat (limited to 'tests/FunctionalTests')
-rw-r--r--tests/FunctionalTests/quickstart_tests/Advanced/I18N.php54
1 files changed, 54 insertions, 0 deletions
diff --git a/tests/FunctionalTests/quickstart_tests/Advanced/I18N.php b/tests/FunctionalTests/quickstart_tests/Advanced/I18N.php
new file mode 100644
index 00000000..a0c8953f
--- /dev/null
+++ b/tests/FunctionalTests/quickstart_tests/Advanced/I18N.php
@@ -0,0 +1,54 @@
+<?php
+
+//New Test
+class I18NTestCase extends SeleniumTestCase
+{
+ function test ()
+ {
+ $this->open("../../demos/quickstart/index.php?page=Advanced.Samples.I18N.Home", "");
+ $this->verifyTitle("Internationlization in PRADO", "");
+ $this->verifyTextPresent("46.412,42 €", "");
+ $this->verifyTextPresent("$12.40", "");
+ $this->verifyTextPresent("€100.00", "");
+ $this->verifyTextPresent("December 6, 2004", "");
+ $this->clickAndWait("link=中文简体", "");
+ $this->verifyTitle("PRADO 国际化", "");
+ $this->verifyTextPresent("2004 十二月", "");
+ $this->verifyTextPresent("US$ 12.40", "");
+ $this->verifyTextPresent("46.412,42 €", "");
+ $this->verifyTextPresent("€100.00 ", "");
+ $this->clickAndWait("link=中文繁體", "");
+ $this->verifyTitle("PRADO 國際化", "");
+ $this->verifyTextPresent("2004年12月6日", "");
+ $this->verifyTextPresent("US$12.40", "");
+ $this->verifyTextPresent("46.412,42 €", "");
+ $this->verifyTextPresent("€100.00", "");
+ $this->clickAndWait("link=Deutsch", "");
+ $this->verifyTitle("Internationalisierung in PRADO", "");
+ $this->verifyTextPresent("6. Dezember 2004 ", "");
+ $this->verifyTextPresent("$ 12,40", "");
+ $this->verifyTextPresent("46.412,42 €", "");
+ $this->verifyTextPresent("€100.00", "");
+ $this->clickAndWait("link=Español", "");
+ $this->verifyTitle("Internationlization en PRADO", "");
+ $this->verifyTextPresent("6 de diciembre de 2004", "");
+ $this->verifyTextPresent("US$12.40", "");
+ $this->verifyTextPresent("46.412,42 €", "");
+ $this->verifyTextPresent("€100.00", "");
+ $this->clickAndWait("link=Français", "");
+ $this->verifyTitle("Internationalisation dans PRADO", "");
+ $this->verifyTextPresent("6 décembre 2004", "");
+ $this->verifyTextPresent("12,40 $", "");
+ $this->verifyTextPresent("46.412,42 €", "");
+ $this->verifyTextPresent("€100.00", "");
+ $this->clickAndWait("link=Polska", "");
+ $this->verifyTitle("Internacjonalizacja w PRADO", "");
+ $this->verifyTextPresent("6 grudnia 2004", "");
+ $this->verifyTextPresent("US$ 12,40", "");
+ $this->verifyTextPresent("46.412,42 €", "");
+ $this->verifyTextPresent("€100.00", "");
+
+ }
+}
+
+?> \ No newline at end of file