, Google, .
WebTestCase setUp logIn, .
, tests, . , . , src/_TestHelpers .
So, I have a:
namespace _TestHelpers;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class ExtendedWTC extends WebTestCase
{
}
and
namespace Tests\AppBundle;
use _TestHelpers\ExtendedWTC
class DefaultControllerTest extends ExtendedWTC
{
}
Note. I use a directory structure Symfony 3, so my tests are in tests/, not src/AppBundle/Tests/.
I hope this helps someone ...
source
share