diff options
author | wei <> | 2006-01-22 02:32:23 +0000 |
---|---|---|
committer | wei <> | 2006-01-22 02:32:23 +0000 |
commit | 1fc6971652492fca325bd25d7b6dd979ebde73ed (patch) | |
tree | d7179ce6af434f6766e543d3fb8dc134f663cb4f /tests/FunctionalTests/quickstart_tests/HelloWorldTestCase.php | |
parent | d4b3de52d0a0a2d394bf4763984029972b5131b1 (diff) |
Adding quickstart_tests
Diffstat (limited to 'tests/FunctionalTests/quickstart_tests/HelloWorldTestCase.php')
-rw-r--r-- | tests/FunctionalTests/quickstart_tests/HelloWorldTestCase.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/FunctionalTests/quickstart_tests/HelloWorldTestCase.php b/tests/FunctionalTests/quickstart_tests/HelloWorldTestCase.php new file mode 100644 index 00000000..1edb844e --- /dev/null +++ b/tests/FunctionalTests/quickstart_tests/HelloWorldTestCase.php @@ -0,0 +1,12 @@ +<?php
+
+class HelloWorldTestCase extends SeleniumTestCase
+{
+ function testButton()
+ {
+ $this->open('../../demos/quickstart/index.php?page=Fundamentals.Samples.HelloWorld.Home');
+ $this->verifyTitle('Hello World');
+ }
+}
+
+?>
\ No newline at end of file |