blob: 538860d4d9da61f144cc875c75f367040cacc91a (
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 PradoGenericSelenium2Test
{
function test()
{
$this->url('tickets/index.php?page=Ticket93');
$this->assertContains("ValidationGroups without any inputs with grouping", $this->source());
}
}
|