本文整理汇总了PHP中Mockery::build方法的典型用法代码示例。如果您正苦于以下问题:PHP Mockery::build方法的具体用法?PHP Mockery::build怎么用?PHP Mockery::build使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mockery
的用法示例。
在下文中一共展示了Mockery::build方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testBuild
public function testBuild()
{
$this->config->shouldReceive('getDataModel')->once()->andReturn(m::mock(array()));
$this->db->shouldReceive('getTablePrefix')->once()->andReturn('');
$this->validator->shouldReceive('arrayGet')->times(4);
$this->column->build();
}
示例2: testBuildRunsEditableCheck
public function testBuildRunsEditableCheck()
{
$this->validator->shouldReceive('arrayGet')->times(3)->andReturn(null, null, function ($param) {
});
$this->config->shouldReceive('getDataModel')->once()->andReturn('test');
$this->field->build();
}
示例3: testBuild
public function testBuild()
{
$url = m::mock('Illuminate\\Routing\\UrlGenerator');
$url->shouldReceive('route')->once();
$this->validator->shouldReceive('arrayGet')->times(3)->shouldReceive('getUrlInstance')->once()->andReturn($url);
$this->config->shouldReceive('getType')->once()->shouldReceive('getOption')->once();
$this->field->build();
}
示例4: testBuild
public function testBuild()
{
$relevantModel = m::mock(array('method' => m::mock(array('getRelated' => m::mock(array('getTable' => ''))))));
$nested = array('pieces' => array('method'), 'models' => array($relevantModel, 'foo'));
$this->column->shouldReceive('getNestedRelationships')->once()->andReturn($nested);
$this->db->shouldReceive('getTablePrefix')->once()->andReturn('');
$this->column->build();
}
示例5: testBuild
public function testBuild()
{
$relationship = m::mock(array('getRelated' => m::mock(array('getTable' => 'table'))));
$model = m::mock(array('getTable' => 'table', 'field' => $relationship));
$this->config->shouldReceive('getDataModel')->once()->andReturn($model);
$this->validator->shouldReceive('arrayGet')->times(6);
$this->field->shouldReceive('setUpConstraints')->once()->shouldReceive('loadRelationshipOptions')->once();
$this->field->build();
}
示例6: testBuild
public function testBuild()
{
$relatedModel = m::mock(array('getKeyName' => 'id', 'getTable' => 'other_table'));
$relationship = m::mock(array('getRelated' => $relatedModel, 'getForeignKey' => 'some_id', 'getPlainForeignKey' => 'some_other_id'));
$model = m::mock(array('field' => $relationship, 'getTable' => 'table'));
$this->config->shouldReceive('getDataModel')->twice()->andReturn($model);
$this->validator->shouldReceive('arrayGet')->times(6);
$this->field->shouldReceive('setUpConstraints')->once()->shouldReceive('loadRelationshipOptions')->once();
$this->field->build();
}
示例7: testBuild
public function testBuild()
{
$this->validator->shouldReceive('arrayGet')->times(4);
$this->field->build();
}
示例8: testBuild
public function testBuild()
{
$this->config->build();
}
示例9: testBuild
public function testBuild()
{
$this->config->shouldReceive('getDataModel')->once()->andReturn(m::mock(array('method' => m::mock(array('getRelated' => m::mock(array('getTable' => '')))))));
$this->db->shouldReceive('getTablePrefix')->once()->andReturn('');
$this->column->build();
}
示例10: testBuild
public function testBuild()
{
$this->action->shouldReceive('buildStringOrCallable')->twice();
$this->validator->shouldReceive('arrayGet')->once()->andReturn(array());
$this->action->build();
}
示例11: testBuild
public function testBuild()
{
$this->config->shouldReceive('getDataModel')->once();
$this->validator->shouldReceive('arrayGet')->once();
$this->action->build();
}