public function fileAsXslFileWithRelativeIncludeDoesNotWork()
 {
     $t = NULL;
     $proc = new DomXSLProcessor();
     $style = new DOMDocument();
     $style->load('res://net/xp_framework/unittest/core/resourceprovider/two/IncludingStylesheet.xsl');
     $proc->setXSLDoc($style);
     $proc->setXmlBuf('<document/>');
     $proc->run();
     $this->assertTrue(FALSE !== strpos($proc->output(), 'Include has been called.'));
 }