File tree 3 files changed +0
-29
lines changed
3 files changed +0
-29
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,6 @@ public function testShouldImplementSerializerInterface()
17
17
$ this ->assertClassImplements (Serializer::class, JsonSerializer::class);
18
18
}
19
19
20
- /**
21
- * @doesNotPerformAssertions
22
- */
23
- public function testCouldBeConstructedWithoutAnyArguments ()
24
- {
25
- new JsonSerializer ();
26
- }
27
-
28
20
public function testShouldConvertMessageToJsonString ()
29
21
{
30
22
$ serializer = new JsonSerializer ();
Original file line number Diff line number Diff line change 13
13
14
14
class RdKafkaConsumerTest extends TestCase
15
15
{
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
-
29
16
public function testShouldReturnQueueSetInConstructor ()
30
17
{
31
18
$ destination = new RdKafkaTopic ('' );
Original file line number Diff line number Diff line change 17
17
18
18
class RdKafkaProducerTest extends TestCase
19
19
{
20
- /**
21
- * @doesNotPerformAssertions
22
- */
23
- public function testCouldBeConstructedWithKafkaProducerAndSerializerAsArguments ()
24
- {
25
- new RdKafkaProducer ($ this ->createKafkaProducerMock (), $ this ->createSerializerMock ());
26
- }
27
-
28
20
public function testThrowIfDestinationInvalid ()
29
21
{
30
22
$ producer = new RdKafkaProducer ($ this ->createKafkaProducerMock (), $ this ->createSerializerMock ());
You can’t perform that action at this time.
0 commit comments