本文整理汇总了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);
}