Exemplo n.º 1
0
 public function testBuildForm()
 {
     $fields = [];
     $this->builder->expects($this->exactly(4))->method('add')->will($this->returnCallback(function ($filedName, $fieldType) use(&$fields) {
         $fields[$filedName] = $fieldType;
     }));
     $this->type->buildForm($this->builder, []);
     $this->assertSame(['name' => 'text', 'entities' => 'orocrm_channel_entities', 'channelType' => 'genemu_jqueryselect2_choice', 'status' => 'choice'], $fields);
 }