From 661d7e80a3ad168a685dee9ce0e19d92f84df78d Mon Sep 17 00:00:00 2001 From: Trismegiste Date: Sat, 11 May 2013 02:56:50 +0200 Subject: [PATCH] todo test --- Tests/Composite/FormTest.php | 5 +++++ Tests/Decorator/DecoratorTest.php | 5 +++++ 2 files changed, 10 insertions(+) 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