Skip to content

Commit

Permalink
Rename tests Functional namespace to Integration
Browse files Browse the repository at this point in the history
  • Loading branch information
ogizanagi committed Nov 10, 2016
1 parent 7f7ab9e commit a4b6318
Show file tree
Hide file tree
Showing 13 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ EOF;

$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
->exclude(__DIR__ . '/tests/Fixtures/Functional/Symfony/app/cache')
->exclude(__DIR__ . '/tests/Fixtures/Integration/Symfony/app/cache')
;

return PhpCsFixer\Config::create()
Expand Down
4 changes: 2 additions & 2 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="tests/Fixtures/Functional/Symfony/app/bootstrap.php"
bootstrap="tests/Fixtures/Integration/Symfony/app/bootstrap.php"
>
<php>
<server name="KERNEL_DIR" value="tests/Fixtures/Functional/Symfony/app/" />
<server name="KERNEL_DIR" value="tests/Fixtures/Integration/Symfony/app/" />
</php>

<testsuites>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @author Elao <[email protected]>
*/

namespace Elao\Enum\Tests\Fixtures\Functional\Symfony\TestBundle\Controller;
namespace Elao\Enum\Tests\Fixtures\Integration\Symfony\TestBundle\Controller;

use Elao\Enum\Bridge\Symfony\Form\Type\EnumType;
use Elao\Enum\Bridge\Symfony\Form\Type\FlaggedEnumType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @author Elao <[email protected]>
*/

namespace Elao\Enum\Tests\Fixtures\Functional\Symfony\TestBundle\Entity;
namespace Elao\Enum\Tests\Fixtures\Integration\Symfony\TestBundle\Entity;

use Doctrine\ORM\Mapping as ORM;
use Elao\Enum\Tests\Fixtures\Enum\Gender;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @author Elao <[email protected]>
*/

namespace Elao\Enum\Tests\Fixtures\Functional\Symfony\TestBundle;
namespace Elao\Enum\Tests\Fixtures\Integration\Symfony\TestBundle;

use Symfony\Component\HttpKernel\Bundle\Bundle;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/

use Doctrine\Bundle\DoctrineBundle\DoctrineBundle;
use Elao\Enum\Tests\Fixtures\Functional\Symfony\TestBundle\TestBundle;
use Elao\Enum\Tests\Fixtures\Integration\Symfony\TestBundle\TestBundle;
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
use Symfony\Bundle\TwigBundle\TwigBundle;
use Symfony\Component\Config\Loader\LoaderInterface;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
* @author Elao <[email protected]>
*/

namespace Elao\Enum\Tests\Functional\Bridge\Doctrine\DBAL\Type;
namespace Elao\Enum\Tests\Integration\Bridge\Doctrine\DBAL\Type;

use Doctrine\Common\DataFixtures\Purger\ORMPurger;
use Doctrine\ORM\EntityManagerInterface;
use Elao\Enum\Tests\Fixtures\Enum\Gender;
use Elao\Enum\Tests\Fixtures\Functional\Symfony\TestBundle\Entity\User;
use Elao\Enum\Tests\Fixtures\Integration\Symfony\TestBundle\Entity\User;
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;

class EnumTypeTest extends KernelTestCase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @author Elao <[email protected]>
*/

namespace Elao\Enum\Tests\Functional\Bridge\Symfony\Form;
namespace Elao\Enum\Tests\Integration\Bridge\Symfony\Form;

use Elao\Enum\Tests\Fixtures\Enum\Gender;
use Elao\Enum\Tests\Fixtures\Enum\Permissions;
Expand Down

0 comments on commit a4b6318

Please sign in to comment.