Rename TestForm class to FormTest, to make it consistent with all other
testcases. Also remove tearDown method, as it doesn't do anything at this moment. Signed-off-by: crynobone <crynobone@gmail.com>
This commit is contained in:
parent
d20add8f75
commit
6dc6b2b5ae
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
class TestForm extends PHPUnit_Framework_TestCase {
|
class FormTest extends PHPUnit_Framework_TestCase {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Setup the test environment.
|
* Setup the test environment.
|
||||||
|
@ -11,11 +11,6 @@ public function setUp()
|
||||||
Config::set('application.url', 'http://localhost');
|
Config::set('application.url', 'http://localhost');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Tear down the test environment.
|
|
||||||
*/
|
|
||||||
public function tearDown(){}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test the compilation of opening a form
|
* Test the compilation of opening a form
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue