blob: 8d11f98b92cbe302e7afbc99a09b69a98c27540c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
/*
* Created on 13/04/2006
*
*/
class Ticket93TestCase extends SeleniumTestCase
{
function test()
{
$this->open('tickets/index.php?page=Ticket93');
$this->verifyTextPresent("ValidationGroups without any inputs with grouping");
}
}
?>
|