From 37bf987688adc3e90aa19f95e1cbfaee216bff0d Mon Sep 17 00:00:00 2001 From: William DURAND Date: Fri, 13 Apr 2012 14:22:07 +0200 Subject: [PATCH] Moved test classes to better locations --- Tests/{ => Extractor}/ApiDocExtratorTest.php | 4 +++- Tests/{ => Formatter}/SimpleFormatterTest.php | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) rename Tests/{ => Extractor}/ApiDocExtratorTest.php (91%) rename Tests/{ => Formatter}/SimpleFormatterTest.php (95%) diff --git a/Tests/ApiDocExtratorTest.php b/Tests/Extractor/ApiDocExtratorTest.php similarity index 91% rename from Tests/ApiDocExtratorTest.php rename to Tests/Extractor/ApiDocExtratorTest.php index 6f977f5..2d3c101 100644 --- a/Tests/ApiDocExtratorTest.php +++ b/Tests/Extractor/ApiDocExtratorTest.php @@ -9,7 +9,9 @@ * file that was distributed with this source code. */ -namespace Nelmio\ApiDocBundle\Tests; +namespace Nelmio\ApiDocBundle\Tests\Extractor; + +use Nelmio\ApiDocBundle\Tests\WebTestCase; class ApiDocExtractorTest extends WebTestCase { diff --git a/Tests/SimpleFormatterTest.php b/Tests/Formatter/SimpleFormatterTest.php similarity index 95% rename from Tests/SimpleFormatterTest.php rename to Tests/Formatter/SimpleFormatterTest.php index 3bbfe1b..8ca8731 100644 --- a/Tests/SimpleFormatterTest.php +++ b/Tests/Formatter/SimpleFormatterTest.php @@ -9,7 +9,9 @@ * file that was distributed with this source code. */ -namespace Nelmio\ApiDocBundle\Tests; +namespace Nelmio\ApiDocBundle\Tests\Formatter; + +use Nelmio\ApiDocBundle\Tests\WebTestCase; class SimpleFormatterTest extends WebTestCase {