summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/features/tests/MyTestCase.php
blob: d748b6b057ef5701e232c1a57c1283d6d7855ac1 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

class MyTestCase extends PradoGenericSelenium2Test
{
	function test1()
	{
		$this->url('http://127.0.0.1');
		$this->assertNotContains('asd', $this->source());
	}
}