File tree Expand file tree Collapse file tree 3 files changed +0
-29
lines changed Expand file tree Collapse file tree 3 files changed +0
-29
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,6 @@ public function testShouldImplementSerializerInterface()
1717 $ this ->assertClassImplements (Serializer::class, JsonSerializer::class);
1818 }
1919
20- /**
21- * @doesNotPerformAssertions
22- */
23- public function testCouldBeConstructedWithoutAnyArguments ()
24- {
25- new JsonSerializer ();
26- }
27-
2820 public function testShouldConvertMessageToJsonString ()
2921 {
3022 $ serializer = new JsonSerializer ();
Original file line number Diff line number Diff line change 1313
1414class RdKafkaConsumerTest extends TestCase
1515{
16- /**
17- * @doesNotPerformAssertions
18- */
19- public function testCouldBeConstructedWithRequiredArguments ()
20- {
21- new RdKafkaConsumer (
22- $ this ->createKafkaConsumerMock (),
23- $ this ->createContextMock (),
24- new RdKafkaTopic ('' ),
25- $ this ->createSerializerMock ()
26- );
27- }
28-
2916 public function testShouldReturnQueueSetInConstructor ()
3017 {
3118 $ destination = new RdKafkaTopic ('' );
Original file line number Diff line number Diff line change 1717
1818class RdKafkaProducerTest extends TestCase
1919{
20- /**
21- * @doesNotPerformAssertions
22- */
23- public function testCouldBeConstructedWithKafkaProducerAndSerializerAsArguments ()
24- {
25- new RdKafkaProducer ($ this ->createKafkaProducerMock (), $ this ->createSerializerMock ());
26- }
27-
2820 public function testThrowIfDestinationInvalid ()
2921 {
3022 $ producer = new RdKafkaProducer ($ this ->createKafkaProducerMock (), $ this ->createSerializerMock ());
You can’t perform that action at this time.
0 commit comments