diff options
Diffstat (limited to 'tests/FunctionalTests/quickstart_tests')
| -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  | 
