todo test

This commit is contained in:
Trismegiste
2013-05-11 02:56:50 +02:00
parent 6b77eb71e6
commit 661d7e80a3
2 changed files with 10 additions and 0 deletions

View File

@@ -27,4 +27,9 @@ class FormTest extends \PHPUnit_Framework_TestCase
$this->assertRegExp('#^\s{4}#m', $form->render());
}
public function testFormImplementsFormEelement()
{
$this->markTestIncomplete();
}
}

View File

@@ -37,4 +37,9 @@ class DecoratorTest extends \PHPUnit_Framework_TestCase
$this->assertXmlStringEqualsXmlString('<?xml version="1.0"?><foo>bar</foo>', $service->renderData());
}
public function testDecoratorImplementsRenderer()
{
$this->markTestIncomplete();
}
}