Exemplo n.º 1
0
 public function testMove()
 {
     $contentNode = $this->getMock('Sulu\\Component\\Content\\Rlp\\Strategy\\NodeInterface', [], [], '', false);
     $contentNode->expects($this->any())->method('getNodes')->willReturn([]);
     $this->isMoved = false;
     // its a delegate
     $this->strategy->move('/test/test', '/test/test-1', $contentNode, 1, 'default', 'de');
     $this->assertTrue($this->isMoved);
 }