diff --git a/Tests/Composite/FormTest.php b/Tests/Composite/FormTest.php index 1c7a428..71a275c 100644 --- a/Tests/Composite/FormTest.php +++ b/Tests/Composite/FormTest.php @@ -27,4 +27,9 @@ class FormTest extends \PHPUnit_Framework_TestCase $this->assertRegExp('#^\s{4}#m', $form->render()); } + public function testFormImplementsFormEelement() + { + $this->markTestIncomplete(); + } + } \ No newline at end of file diff --git a/Tests/Decorator/DecoratorTest.php b/Tests/Decorator/DecoratorTest.php index f8a759b..4eee22b 100644 --- a/Tests/Decorator/DecoratorTest.php +++ b/Tests/Decorator/DecoratorTest.php @@ -37,4 +37,9 @@ class DecoratorTest extends \PHPUnit_Framework_TestCase $this->assertXmlStringEqualsXmlString('bar', $service->renderData()); } + public function testDecoratorImplementsRenderer() + { + $this->markTestIncomplete(); + } + } \ No newline at end of file