/**
  * @dataProvider provideisChildNodeOf
  **/
 public function testisChildNodeOf(NodeInterface $child, NodeInterface $parent, $expected)
 {
     $this->assertEquals($expected, $child->isChildNodeOf($parent));
 }