예제 #1
0
 /**
  * Test form checkbox check all.
  *
  * @return void
  */
 public function testCheckAll()
 {
     $expected = [['input' => ['type' => 'hidden', 'class' => 'form-control', 'name' => 'check_all', 'value' => 0]], ['input' => ['type' => 'checkbox', 'name' => 'check_all', 'value' => 1, 'class' => 'jsCheckAll']]];
     $this->assertHtml($expected, $this->Form->checkAll());
     ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     $expected = [['input' => ['type' => 'hidden', 'class' => 'form-control', 'name' => 'check_all', 'value' => 0]], ['input' => ['type' => 'checkbox', 'name' => 'check_all', 'value' => 1, 'class' => 'jsCheckAll', 'id' => 'simple']]];
     $this->assertHtml($expected, $this->Form->checkAll(['id' => 'simple']));
 }