mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Make test names match the rest of the tests.
This commit is contained in:
parent
ead6c837c8
commit
559d9d39e7
1 changed files with 5 additions and 5 deletions
|
@ -1275,7 +1275,7 @@ class FormHelperTest extends CakeTestCase {
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testFormSecuredFileInput() {
|
||||
public function testSecuredFileInput() {
|
||||
$this->Form->request['_Token'] = array('key' => 'testKey');
|
||||
$this->assertEquals(array(), $this->Form->fields);
|
||||
|
||||
|
@ -1292,7 +1292,7 @@ class FormHelperTest extends CakeTestCase {
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testFormSecuredMultipleSelect() {
|
||||
public function testSecuredMultipleSelect() {
|
||||
$this->Form->request['_Token'] = array('key' => 'testKey');
|
||||
$this->assertEquals(array(), $this->Form->fields);
|
||||
$options = array('1' => 'one', '2' => 'two');
|
||||
|
@ -1311,7 +1311,7 @@ class FormHelperTest extends CakeTestCase {
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testFormSecuredRadio() {
|
||||
public function testSecuredRadio() {
|
||||
$this->Form->request['_Token'] = array('key' => 'testKey');
|
||||
$this->assertEquals(array(), $this->Form->fields);
|
||||
$options = array('1' => 'option1', '2' => 'option2');
|
||||
|
@ -1326,7 +1326,7 @@ class FormHelperTest extends CakeTestCase {
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testFormSecuredAndDisabledNotAssoc() {
|
||||
public function testSecuredAndDisabledNotAssoc() {
|
||||
$this->Form->request['_Token'] = array('key' => 'testKey');
|
||||
|
||||
$this->Form->select('Model.select', array(1, 2), array('disabled'));
|
||||
|
@ -1348,7 +1348,7 @@ class FormHelperTest extends CakeTestCase {
|
|||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testFormSecuredAndDisabled() {
|
||||
public function testSecuredAndDisabled() {
|
||||
$this->Form->request['_Token'] = array('key' => 'testKey');
|
||||
|
||||
$this->Form->checkbox('Model.checkbox', array('disabled' => true));
|
||||
|
|
Loading…
Reference in a new issue