本文整理匯總了PHP中Nette\Forms\Form::expects方法的典型用法代碼示例。如果您正苦於以下問題:PHP Form::expects方法的具體用法?PHP Form::expects怎麽用?PHP Form::expects使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Nette\Forms\Form
的用法示例。
在下文中一共展示了Form::expects方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testAddFormControl
public function testAddFormControl()
{
$this->form->expects($this->once())->method('addCheckbox')->with('var', 'Boolean')->will($this->returnValue($this->control));
$this->control->expects($this->any())->method('setRequiered')->will($this->returnValue($this->control));
$result = $this->object->addFormControl($this->form, $this->metadata);
$this->assertSame($this->control, $result);
}
示例2: testAddFormControl
public function testAddFormControl()
{
$values = array('foo' => 'bar', 'baz' => 'qux');
$this->object = $this->getMockBuilder('\\Vodacek\\Form\\Builder\\Mappers\\SelectboxMapper')->setMethods(array('getValues'))->getMockForAbstractClass();
$this->object->expects($this->any())->method('getValues')->will($this->returnValue($values));
$this->form->expects($this->any())->method('addSelect')->with('var', 'Select', $values)->will($this->returnValue($this->control));
$this->object->addFormControl($this->form, $this->metadata);
}
示例3: testAddFloatWithCustomStep
public function testAddFloatWithCustomStep()
{
$this->metadata->type = 'float';
$this->metadata->custom['step'] = '0.002';
$this->form->expects($this->once())->method('addText')->with('var', 'Int')->will($this->returnValue($this->control));
$this->controlPrototype->expects($this->any())->method('type')->with('number');
$this->controlPrototype->expects($this->any())->method('step')->with('0.002');
$this->object->addFormControl($this->form, $this->metadata);
}
示例4: testRangeCondition
/**
* @dataProvider dp_testRangeCondition
*/
public function testRangeCondition($min, $max)
{
$this->metadata->conditions['min'] = $min;
$this->metadata->conditions['max'] = $max;
$this->form->expects($this->once())->method('addText')->will($this->returnValue($this->control));
$this->control->expects($this->once())->method('addRule')->with(Builder\EntityForm::RANGE, null, array($min, $max));
$this->object->addFormControl($this->form, $this->metadata);
}
示例5: testAddingTextArea
public function testAddingTextArea()
{
$this->metadata->type = 'text';
$this->form->expects($this->once())->method('addTextArea')->with('var', 'String')->will($this->returnValue($this->control));
$this->object->addFormControl($this->form, $this->metadata);
}