diff options
author | wei <> | 2006-09-30 05:18:39 +0000 |
---|---|---|
committer | wei <> | 2006-09-30 05:18:39 +0000 |
commit | 7eafd95bfa21c9c8603e9c437a9d96dc880d92e7 (patch) | |
tree | 9ebe3012fc2a931a7a9e1d0c1b3eef33b1ed16ba /tests/FunctionalTests/features | |
parent | 36a61db3144c111b722db89baf5a1d55c1c9a6b2 (diff) |
Update selenium to 0.8
Diffstat (limited to 'tests/FunctionalTests/features')
-rw-r--r-- | tests/FunctionalTests/features/tests/MyTestCase.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/FunctionalTests/features/tests/MyTestCase.php b/tests/FunctionalTests/features/tests/MyTestCase.php new file mode 100644 index 00000000..cb26d709 --- /dev/null +++ b/tests/FunctionalTests/features/tests/MyTestCase.php @@ -0,0 +1,19 @@ +<?php
+
+class MyTestCase extends SeleniumTestCase
+{
+ function test1()
+ {
+ $this->open('http://127.0.0.1');
+ $this->assertTextNotPresent('asd');
+ }
+
+ function test2()
+ {
+ $this->skipBrowsers(self::FIREFOX);
+ $this->open('http://127.0.0.1');
+ $this->assertTextNotPresent('asd');
+ }
+}
+
+?>
\ No newline at end of file |