本文整理汇总了PHP中PHPUnit_Framework_MockObject_MockObject::remove方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPUnit_Framework_MockObject_MockObject::remove方法的具体用法?PHP PHPUnit_Framework_MockObject_MockObject::remove怎么用?PHP PHPUnit_Framework_MockObject_MockObject::remove使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHPUnit_Framework_MockObject_MockObject
的用法示例。
在下文中一共展示了PHPUnit_Framework_MockObject_MockObject::remove方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testRemove
public function testRemove()
{
$id = 'test_id';
$this->layoutManipulator->expects($this->once())->method('remove')->with($id);
$result = $this->layoutBuilder->remove($id);
$this->assertSame($this->layoutBuilder, $result);
}
示例2: findByParentAndNodeTypeRemovesRemovedNodeInRepositoryAndRespectsWorkspaceAndDimensions
/**
* @test
*/
public function findByParentAndNodeTypeRemovesRemovedNodeInRepositoryAndRespectsWorkspaceAndDimensions()
{
$liveWorkspace = new Workspace('live');
$nodeData = $this->getMockBuilder(NodeData::class)->disableOriginalConstructor()->getMock();
$nodeData->expects($this->any())->method('getIdentifier')->will($this->returnValue('abcd-efgh-ijkl-mnop'));
$nodeData->expects($this->any())->method('getPath')->will($this->returnValue('/foo/bar'));
$nodeData->expects($this->any())->method('getDepth')->will($this->returnValue(2));
$this->nodeDataRepository->remove($nodeData);
$dimensions = array('persona' => array('everybody'), 'language' => array('de_DE', 'mul_ZZ'));
$nodeData->expects($this->atLeastOnce())->method('matchesWorkspaceAndDimensions')->with($liveWorkspace, $dimensions)->will($this->returnValue(true));
$this->nodeDataRepository->expects($this->any())->method('getNodeDataForParentAndNodeType')->will($this->returnValue(array('abcd-efgh-ijkl-mnop' => $nodeData)));
$result = $this->nodeDataRepository->findByParentAndNodeType('/foo', null, $liveWorkspace, $dimensions);
$this->assertCount(0, $result);
}
示例3: removeChecksObjectType
/**
* @test
* @expectedException \TYPO3\CMS\Extbase\Persistence\Exception\IllegalObjectTypeException
*/
public function removeChecksObjectType()
{
$this->repository->_set('objectType', 'ExpectedObjectType');
$this->repository->remove(new \stdClass());
}
示例4: tearDown
public function tearDown()
{
$this->fs->remove($this->dir);
}
示例5: removeThrowsException
/**
* @test
*
* @expectedException \BadMethodCallException
*/
public function removeThrowsException()
{
$this->subject->remove(new AbstractEntity());
}