mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-08 13:51:34 +01:00
Optimized test structure
This commit is contained in:
parent
5e70b0cadb
commit
56adc559e3
@ -18,8 +18,8 @@
|
|||||||
</php>
|
</php>
|
||||||
|
|
||||||
<testsuites>
|
<testsuites>
|
||||||
<testsuite name="Functional Test Suite">
|
<testsuite name="Integration Test Suite">
|
||||||
<directory>tests/</directory>
|
<directory>./integration/</directory>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
<testsuite name="Unit Test Suite">
|
<testsuite name="Unit Test Suite">
|
||||||
<directory>./src/</directory>
|
<directory>./src/</directory>
|
||||||
|
0
application/tests/integration/.gitignore
vendored
Normal file
0
application/tests/integration/.gitignore
vendored
Normal file
@ -1,7 +1,10 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace App\Controller;
|
namespace App\Tests\Unit\Controller;
|
||||||
|
|
||||||
|
|
||||||
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
||||||
|
use App\Controller\DefaultControllerInterface;
|
||||||
|
use App\Controller\DefaultController;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace App\Controller;
|
namespace App\Tests\Unit\Controller;
|
||||||
|
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
use App\Controller\UserController;
|
use App\Controller\UserController;
|
Loading…
Reference in New Issue
Block a user