Ejemplo n.º 1
0
 public function testHasChildrenReturnsTrueIfThereAreVisibleChildren()
 {
     $this->_iteratorMock->expects($this->once())->method('current')->will($this->returnValue(true));
     $this->_iteratorMock->expects($this->once())->method('valid')->will($this->returnValue(true));
     $this->assertTrue($this->_model->hasChildren());
 }