public function testToXpath()
 {
     // h1#foo
     $element = new ElementNode('*', 'h1');
     $hash = new HashNode($element, 'foo');
     $this->assertEquals("h1[@id = 'foo']", (string) $hash->toXpath(), '->toXpath() returns the xpath representation of the node');
 }