Skip to content

Instantly share code, notes, and snippets.

@nojimage
Created May 24, 2011 05:34
Show Gist options
  • Save nojimage/988178 to your computer and use it in GitHub Desktop.
Save nojimage/988178 to your computer and use it in GitHub Desktop.
class Stagehand_TestRunner_CakeSkipTest extends CakeTestCase
{
public function skip()
{
$this->skipIf(true, 'This is an skip message.');
}
public function testPass()
{
$this->assertTrue(true);
}
}
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite name="The test suite generated by Stagehand_TestRunner" tests="0" assertions="0" failures="0" errors="1" time="0.000000">
<error>This is an skip message.</error>
</testsuite>
</testsuites>
@nojimage
Copy link
Author

report.xml で、testsuiteの中にerrorが直接入ったXMLが構築されるためパースエラーとなる。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment