aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Tests/EventListener/UserLocaleListenerTest.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2015-11-01 23:42:52 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2015-11-07 14:16:13 +0100
commit8a493541fa4911233fe9186e88371d17cb9fd7db (patch)
treecd4011716fbf85b29b54d33e0ca17920cb5fe6d4 /src/Wallabag/CoreBundle/Tests/EventListener/UserLocaleListenerTest.php
parent735068d1814a4b7a688e1d19cd17b13e8c5da3eb (diff)
downloadwallabag-8a493541fa4911233fe9186e88371d17cb9fd7db.tar.gz
wallabag-8a493541fa4911233fe9186e88371d17cb9fd7db.tar.zst
wallabag-8a493541fa4911233fe9186e88371d17cb9fd7db.zip
Re-enable test on doctrine command
It will slow down the whole test suite (because it'll use doctrine command). Remove unecessary `KernelTestCase`. Also rename `AbstractControllerTest` to `WallabagApiTestCase` for consistency.
Diffstat (limited to 'src/Wallabag/CoreBundle/Tests/EventListener/UserLocaleListenerTest.php')
-rw-r--r--src/Wallabag/CoreBundle/Tests/EventListener/UserLocaleListenerTest.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Wallabag/CoreBundle/Tests/EventListener/UserLocaleListenerTest.php b/src/Wallabag/CoreBundle/Tests/EventListener/UserLocaleListenerTest.php
index e8a65fbf..80ddb457 100644
--- a/src/Wallabag/CoreBundle/Tests/EventListener/UserLocaleListenerTest.php
+++ b/src/Wallabag/CoreBundle/Tests/EventListener/UserLocaleListenerTest.php
@@ -2,7 +2,6 @@
2 2
3namespace Wallabag\CoreBundle\Tests\EventListener; 3namespace Wallabag\CoreBundle\Tests\EventListener;
4 4
5use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
6use Symfony\Component\HttpFoundation\Request; 5use Symfony\Component\HttpFoundation\Request;
7use Symfony\Component\HttpFoundation\Session\Storage\MockArraySessionStorage; 6use Symfony\Component\HttpFoundation\Session\Storage\MockArraySessionStorage;
8use Symfony\Component\HttpFoundation\Session\Session; 7use Symfony\Component\HttpFoundation\Session\Session;
@@ -12,7 +11,7 @@ use Wallabag\CoreBundle\EventListener\UserLocaleListener;
12use Wallabag\CoreBundle\Entity\Config; 11use Wallabag\CoreBundle\Entity\Config;
13use Wallabag\UserBundle\Entity\User; 12use Wallabag\UserBundle\Entity\User;
14 13
15class UserLocaleListenerTest extends KernelTestCase 14class UserLocaleListenerTest extends \PHPUnit_Framework_TestCase
16{ 15{
17 public function testWithLanguage() 16 public function testWithLanguage()
18 { 17 {