diff options
Diffstat (limited to 'tests/Wallabag')
-rw-r--r-- | tests/Wallabag/ImportBundle/Consumer/AMQPEntryConsumerTest.php (renamed from tests/Wallabag/ImportBundle/Consumer/AMPQEntryConsumerTest.php) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/Wallabag/ImportBundle/Consumer/AMPQEntryConsumerTest.php b/tests/Wallabag/ImportBundle/Consumer/AMQPEntryConsumerTest.php index b13ade1d..a3263771 100644 --- a/tests/Wallabag/ImportBundle/Consumer/AMPQEntryConsumerTest.php +++ b/tests/Wallabag/ImportBundle/Consumer/AMQPEntryConsumerTest.php | |||
@@ -2,12 +2,12 @@ | |||
2 | 2 | ||
3 | namespace Tests\Wallabag\ImportBundle\Consumer\AMQP; | 3 | namespace Tests\Wallabag\ImportBundle\Consumer\AMQP; |
4 | 4 | ||
5 | use Wallabag\ImportBundle\Consumer\AMPQEntryConsumer; | 5 | use Wallabag\ImportBundle\Consumer\AMQPEntryConsumer; |
6 | use PhpAmqpLib\Message\AMQPMessage; | 6 | use PhpAmqpLib\Message\AMQPMessage; |
7 | use Wallabag\UserBundle\Entity\User; | 7 | use Wallabag\UserBundle\Entity\User; |
8 | use Wallabag\CoreBundle\Entity\Entry; | 8 | use Wallabag\CoreBundle\Entity\Entry; |
9 | 9 | ||
10 | class AMPQEntryConsumerTest extends \PHPUnit_Framework_TestCase | 10 | class AMQPEntryConsumerTest extends \PHPUnit_Framework_TestCase |
11 | { | 11 | { |
12 | public function testMessageOk() | 12 | public function testMessageOk() |
13 | { | 13 | { |
@@ -112,7 +112,7 @@ JSON; | |||
112 | ->with(json_decode($body, true)) | 112 | ->with(json_decode($body, true)) |
113 | ->willReturn($entry); | 113 | ->willReturn($entry); |
114 | 114 | ||
115 | $consumer = new AMPQEntryConsumer( | 115 | $consumer = new AMQPEntryConsumer( |
116 | $em, | 116 | $em, |
117 | $userRepository, | 117 | $userRepository, |
118 | $import | 118 | $import |
@@ -157,7 +157,7 @@ JSON; | |||
157 | ->disableOriginalConstructor() | 157 | ->disableOriginalConstructor() |
158 | ->getMock(); | 158 | ->getMock(); |
159 | 159 | ||
160 | $consumer = new AMPQEntryConsumer( | 160 | $consumer = new AMQPEntryConsumer( |
161 | $em, | 161 | $em, |
162 | $userRepository, | 162 | $userRepository, |
163 | $import | 163 | $import |
@@ -212,7 +212,7 @@ JSON; | |||
212 | ->with(json_decode($body, true)) | 212 | ->with(json_decode($body, true)) |
213 | ->willReturn(null); | 213 | ->willReturn(null); |
214 | 214 | ||
215 | $consumer = new AMPQEntryConsumer( | 215 | $consumer = new AMQPEntryConsumer( |
216 | $em, | 216 | $em, |
217 | $userRepository, | 217 | $userRepository, |
218 | $import | 218 | $import |