File tree Expand file tree Collapse file tree 3 files changed +0
-24
lines changed Expand file tree Collapse file tree 3 files changed +0
-24
lines changed Original file line number Diff line number Diff line change @@ -24,14 +24,6 @@ public function testShouldImplementConsumerInterface()
24
24
$ this ->assertClassImplements (Consumer::class, SqsConsumer::class);
25
25
}
26
26
27
- /**
28
- * @doesNotPerformAssertions
29
- */
30
- public function testCouldBeConstructedWithRequiredArguments ()
31
- {
32
- new SqsConsumer ($ this ->createContextMock (), new SqsDestination ('queue ' ));
33
- }
34
-
35
27
public function testShouldReturnInstanceOfDestination ()
36
28
{
37
29
$ destination = new SqsDestination ('queue ' );
Original file line number Diff line number Diff line change @@ -25,14 +25,6 @@ public function testShouldImplementContextInterface()
25
25
$ this ->assertClassImplements (Context::class, SqsContext::class);
26
26
}
27
27
28
- /**
29
- * @doesNotPerformAssertions
30
- */
31
- public function testCouldBeConstructedWithSqsClientAsFirstArgument ()
32
- {
33
- new SqsContext ($ this ->createSqsClientMock (), []);
34
- }
35
-
36
28
public function testShouldAllowCreateEmptyMessage ()
37
29
{
38
30
$ context = new SqsContext ($ this ->createSqsClientMock (), []);
Original file line number Diff line number Diff line change @@ -24,14 +24,6 @@ public function testShouldImplementProducerInterface()
24
24
$ this ->assertClassImplements (Producer::class, SqsProducer::class);
25
25
}
26
26
27
- /**
28
- * @doesNotPerformAssertions
29
- */
30
- public function testCouldBeConstructedWithRequiredArguments ()
31
- {
32
- new SqsProducer ($ this ->createSqsContextMock ());
33
- }
34
-
35
27
public function testShouldThrowIfBodyOfInvalidType ()
36
28
{
37
29
$ this ->expectException (InvalidMessageException::class);
You can’t perform that action at this time.
0 commit comments