aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/ImportBundle/Import/PocketImportTest.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2017-12-16 22:17:42 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2017-12-18 13:29:33 +0100
commitbd91bd5c32dcec997e1cc1aff93f585dac093742 (patch)
tree02be54155fe8ffb87d73a225bec6555f86056210 /tests/Wallabag/ImportBundle/Import/PocketImportTest.php
parent3ccf086391588b1eb0f6d7bcc420ed529f7fdd8f (diff)
downloadwallabag-bd91bd5c32dcec997e1cc1aff93f585dac093742.tar.gz
wallabag-bd91bd5c32dcec997e1cc1aff93f585dac093742.tar.zst
wallabag-bd91bd5c32dcec997e1cc1aff93f585dac093742.zip
Use namespaced PHPUnit classes
Diffstat (limited to 'tests/Wallabag/ImportBundle/Import/PocketImportTest.php')
-rw-r--r--tests/Wallabag/ImportBundle/Import/PocketImportTest.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Wallabag/ImportBundle/Import/PocketImportTest.php b/tests/Wallabag/ImportBundle/Import/PocketImportTest.php
index fe59f867..baa5d905 100644
--- a/tests/Wallabag/ImportBundle/Import/PocketImportTest.php
+++ b/tests/Wallabag/ImportBundle/Import/PocketImportTest.php
@@ -9,6 +9,7 @@ use GuzzleHttp\Subscriber\Mock;
9use M6Web\Component\RedisMock\RedisMockFactory; 9use M6Web\Component\RedisMock\RedisMockFactory;
10use Monolog\Handler\TestHandler; 10use Monolog\Handler\TestHandler;
11use Monolog\Logger; 11use Monolog\Logger;
12use PHPUnit\Framework\TestCase;
12use Simpleue\Queue\RedisQueue; 13use Simpleue\Queue\RedisQueue;
13use Wallabag\CoreBundle\Entity\Config; 14use Wallabag\CoreBundle\Entity\Config;
14use Wallabag\CoreBundle\Entity\Entry; 15use Wallabag\CoreBundle\Entity\Entry;
@@ -16,7 +17,7 @@ use Wallabag\ImportBundle\Import\PocketImport;
16use Wallabag\ImportBundle\Redis\Producer; 17use Wallabag\ImportBundle\Redis\Producer;
17use Wallabag\UserBundle\Entity\User; 18use Wallabag\UserBundle\Entity\User;
18 19
19class PocketImportTest extends \PHPUnit_Framework_TestCase 20class PocketImportTest extends TestCase
20{ 21{
21 protected $token; 22 protected $token;
22 protected $user; 23 protected $user;