blob: fa08d396f613e3401bae49f355915e055b8e99c8 (
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->assertSourceContains("ValidationGroups without any inputs with grouping");
}
}
|