File tree Expand file tree Collapse file tree 3 files changed +0
-34
lines changed Expand file tree Collapse file tree 3 files changed +0
-34
lines changed Original file line number Diff line number Diff line change @@ -19,14 +19,6 @@ public function testShouldImplementConsumerInterface()
19
19
$ this ->assertClassImplements (Consumer::class, AmqpConsumer::class);
20
20
}
21
21
22
- /**
23
- * @doesNotPerformAssertions
24
- */
25
- public function testCouldBeConstructedWithContextAndQueueAsArguments ()
26
- {
27
- new AmqpConsumer ($ this ->createContext (), new AmqpQueue ('aName ' ));
28
- }
29
-
30
22
/**
31
23
* @return MockObject|AmqpContext
32
24
*/
Original file line number Diff line number Diff line change @@ -28,24 +28,6 @@ public function testShouldImplementQueueInteropContextInterface()
28
28
$ this ->assertClassImplements (Context::class, AmqpContext::class);
29
29
}
30
30
31
- /**
32
- * @doesNotPerformAssertions
33
- */
34
- public function testCouldBeConstructedWithExtChannelAsFirstArgument ()
35
- {
36
- new AmqpContext ($ this ->createExtChannelMock ());
37
- }
38
-
39
- /**
40
- * @doesNotPerformAssertions
41
- */
42
- public function testCouldBeConstructedWithExtChannelCallbackFactoryAsFirstArgument ()
43
- {
44
- new AmqpContext (function () {
45
- return $ this ->createExtChannelMock ();
46
- });
47
- }
48
-
49
31
public function testThrowIfNeitherCallbackNorExtChannelAsFirstArgument ()
50
32
{
51
33
$ this ->expectException (\InvalidArgumentException::class);
Original file line number Diff line number Diff line change @@ -17,14 +17,6 @@ public function testShouldImplementQueueInteropSubscriptionConsumerInterface()
17
17
$ this ->assertTrue ($ rc ->implementsInterface (SubscriptionConsumer::class));
18
18
}
19
19
20
- /**
21
- * @doesNotPerformAssertions
22
- */
23
- public function testCouldBeConstructedWithAmqpContextAsFirstArgument ()
24
- {
25
- new AmqpSubscriptionConsumer ($ this ->createAmqpContextMock ());
26
- }
27
-
28
20
/**
29
21
* @return AmqpContext|MockObject
30
22
*/
You can’t perform that action at this time.
0 commit comments