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