File tree 4 files changed +0
-32
lines changed
4 files changed +0
-32
lines changed Original file line number Diff line number Diff line change @@ -25,14 +25,6 @@ public function testShouldImplementConsumerInterface()
25
25
$ this ->assertClassImplements (Consumer::class, MongodbConsumer::class);
26
26
}
27
27
28
- /**
29
- * @doesNotPerformAssertions
30
- */
31
- public function testCouldBeConstructedWithRequiredArguments ()
32
- {
33
- new MongodbConsumer ($ this ->createContextMock (), new MongodbDestination ('queue ' ));
34
- }
35
-
36
28
public function testShouldReturnInstanceOfDestination ()
37
29
{
38
30
$ destination = new MongodbDestination ('queue ' );
Original file line number Diff line number Diff line change @@ -29,14 +29,6 @@ public function testShouldImplementContextInterface()
29
29
$ this ->assertClassImplements (Context::class, MongodbContext::class);
30
30
}
31
31
32
- /**
33
- * @doesNotPerformAssertions
34
- */
35
- public function testCouldBeConstructedWithRequiredArguments ()
36
- {
37
- new MongodbContext ($ this ->createClientMock ());
38
- }
39
-
40
32
public function testCouldBeConstructedWithEmptyConfiguration ()
41
33
{
42
34
$ context = new MongodbContext ($ this ->createClientMock (), []);
Original file line number Diff line number Diff line change @@ -23,14 +23,6 @@ public function testShouldImplementProducerInterface()
23
23
$ this ->assertClassImplements (Producer::class, MongodbProducer::class);
24
24
}
25
25
26
- /**
27
- * @doesNotPerformAssertions
28
- */
29
- public function testCouldBeConstructedWithRequiredArguments ()
30
- {
31
- new MongodbProducer ($ this ->createContextMock ());
32
- }
33
-
34
26
public function testShouldThrowIfDestinationOfInvalidType ()
35
27
{
36
28
$ this ->expectException (InvalidDestinationException::class);
Original file line number Diff line number Diff line change @@ -24,14 +24,6 @@ public function testShouldImplementSubscriptionConsumerInterface()
24
24
$ this ->assertTrue ($ rc ->implementsInterface (SubscriptionConsumer::class));
25
25
}
26
26
27
- /**
28
- * @doesNotPerformAssertions
29
- */
30
- public function testCouldBeConstructedWithMongodbContextAsFirstArgument ()
31
- {
32
- new MongodbSubscriptionConsumer ($ this ->createMongodbContextMock ());
33
- }
34
-
35
27
public function testShouldAddConsumerAndCallbackToSubscribersPropertyOnSubscribe ()
36
28
{
37
29
$ subscriptionConsumer = new MongodbSubscriptionConsumer ($ this ->createMongodbContextMock ());
You can’t perform that action at this time.
0 commit comments