Skip to content

Commit a2177a5

Browse files
committed
Fixing risky tests
Makring tests that have no assertions with the annotation to suppress phpunits warning around risky tests closes 1370
1 parent 48d3303 commit a2177a5

File tree

120 files changed

+421
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+421
-0
lines changed

pkg/amqp-bunny/Tests/AmqpConsumerTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ public function testShouldImplementConsumerInterface()
2727
$this->assertClassImplements(Consumer::class, AmqpConsumer::class);
2828
}
2929

30+
/**
31+
* @doesNotPerformAssertions
32+
*/
3033
public function testCouldBeConstructedWithContextAndQueueAsArguments()
3134
{
3235
new AmqpConsumer($this->createContextMock(), new AmqpQueue('aName'));

pkg/amqp-bunny/Tests/AmqpProducerTest.php

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ class AmqpProducerTest extends TestCase
2424
{
2525
use ClassExtensionTrait;
2626

27+
/**
28+
* @doesNotPerformAssertions
29+
*/
30+
2731
public function testCouldBeConstructedWithRequiredArguments()
2832
{
2933
new AmqpProducer($this->createBunnyChannelMock(), $this->createContextMock());

pkg/amqp-bunny/Tests/AmqpSubscriptionConsumerTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ public function testShouldImplementQueueInteropSubscriptionConsumerInterface()
1717
$this->assertTrue($rc->implementsInterface(SubscriptionConsumer::class));
1818
}
1919

20+
/**
21+
* @doesNotPerformAssertions
22+
*/
2023
public function testCouldBeConstructedWithAmqpContextAsFirstArgument()
2124
{
2225
new AmqpSubscriptionConsumer($this->createAmqpContextMock());

pkg/amqp-ext/Tests/AmqpConsumerTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ public function testShouldImplementConsumerInterface()
1919
$this->assertClassImplements(Consumer::class, AmqpConsumer::class);
2020
}
2121

22+
/**
23+
* @doesNotPerformAssertions
24+
*/
2225
public function testCouldBeConstructedWithContextAndQueueAsArguments()
2326
{
2427
new AmqpConsumer($this->createContext(), new AmqpQueue('aName'));

pkg/amqp-ext/Tests/AmqpContextTest.php

+6
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,17 @@ public function testShouldImplementQueueInteropContextInterface()
2828
$this->assertClassImplements(Context::class, AmqpContext::class);
2929
}
3030

31+
/**
32+
* @doesNotPerformAssertions
33+
*/
3134
public function testCouldBeConstructedWithExtChannelAsFirstArgument()
3235
{
3336
new AmqpContext($this->createExtChannelMock());
3437
}
3538

39+
/**
40+
* @doesNotPerformAssertions
41+
*/
3642
public function testCouldBeConstructedWithExtChannelCallbackFactoryAsFirstArgument()
3743
{
3844
new AmqpContext(function () {

pkg/amqp-ext/Tests/AmqpSubscriptionConsumerTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ public function testShouldImplementQueueInteropSubscriptionConsumerInterface()
1717
$this->assertTrue($rc->implementsInterface(SubscriptionConsumer::class));
1818
}
1919

20+
/**
21+
* @doesNotPerformAssertions
22+
*/
2023
public function testCouldBeConstructedWithAmqpContextAsFirstArgument()
2124
{
2225
new AmqpSubscriptionConsumer($this->createAmqpContextMock());

pkg/async-event-dispatcher/Tests/AsyncProcessorTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ public function testShouldImplementProcessorInterface()
2424
$this->assertClassImplements(Processor::class, AsyncProcessor::class);
2525
}
2626

27+
/**
28+
* @doesNotPerformAssertions
29+
*/
2730
public function testCouldBeConstructedWithRegistryAndProxyEventDispatcher()
2831
{
2932
new AsyncProcessor($this->createRegistryMock(), $this->createProxyEventDispatcherMock());

pkg/async-event-dispatcher/Tests/PhpSerializerEventTransformerTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ public function testShouldImplementEventTransformerInterface()
2121
$this->assertClassImplements(EventTransformer::class, PhpSerializerEventTransformer::class);
2222
}
2323

24+
/**
25+
* @doesNotPerformAssertions
26+
*/
2427
public function testCouldBeConstructedWithoutAnyArguments()
2528
{
2629
new PhpSerializerEventTransformer($this->createContextStub());

pkg/async-event-dispatcher/Tests/SimpleRegistryTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ public function testShouldImplementRegistryInterface()
1818
$this->assertClassImplements(Registry::class, SimpleRegistry::class);
1919
}
2020

21+
/**
22+
* @doesNotPerformAssertions
23+
*/
2124
public function testCouldBeConstructedWithEventsMapAndTransformersMapAsArguments()
2225
{
2326
new SimpleRegistry([], []);

pkg/dbal/Tests/DbalConsumerTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ public function testShouldImplementConsumerInterface()
2828
$this->assertClassImplements(Consumer::class, DbalConsumer::class);
2929
}
3030

31+
/**
32+
* @doesNotPerformAssertions
33+
*/
3134
public function testCouldBeConstructedWithRequiredArguments()
3235
{
3336
new DbalConsumer($this->createContextMock(), new DbalDestination('queue'));

pkg/dbal/Tests/DbalContextTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ public function testShouldImplementContextInterface()
2727
$this->assertClassImplements(Context::class, DbalContext::class);
2828
}
2929

30+
/**
31+
* @doesNotPerformAssertions
32+
*/
3033
public function testCouldBeConstructedWithRequiredArguments()
3134
{
3235
new DbalContext($this->createConnectionMock());

pkg/dbal/Tests/DbalProducerTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ public function testShouldImplementProducerInterface()
2121
$this->assertClassImplements(Producer::class, DbalProducer::class);
2222
}
2323

24+
/**
25+
* @doesNotPerformAssertions
26+
*/
2427
public function testCouldBeConstructedWithRequiredArguments()
2528
{
2629
new DbalProducer($this->createContextMock());

pkg/dbal/Tests/DbalSubscriptionConsumerTest.php

+6
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ public function testShouldImplementSubscriptionConsumerInterface()
2525
$this->assertTrue($rc->implementsInterface(SubscriptionConsumer::class));
2626
}
2727

28+
/**
29+
* @doesNotPerformAssertions
30+
*/
2831
public function testCouldBeConstructedWithDbalContextAsFirstArgument()
2932
{
3033
new DbalSubscriptionConsumer($this->createDbalContextMock());
@@ -66,6 +69,9 @@ public function testThrowsIfTrySubscribeAnotherConsumerToAlreadySubscribedQueue(
6669
$subscriptionConsumer->subscribe($barConsumer, $barCallback);
6770
}
6871

72+
/**
73+
* @doesNotPerformAssertions
74+
*/
6975
public function testShouldAllowSubscribeSameConsumerAndCallbackSecondTime()
7076
{
7177
$subscriptionConsumer = new DbalSubscriptionConsumer($this->createDbalContextMock());

pkg/dsn/Tests/DsnTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88

99
class DsnTest extends TestCase
1010
{
11+
/**
12+
* @doesNotPerformAssertions
13+
*/
1114
public function testCouldBeConstructedWithDsnAsFirstArgument()
1215
{
1316
Dsn::parseFirst('foo://localhost:1234');

pkg/enqueue-bundle/Tests/Unit/Consumption/Extension/DoctrineClearIdentityMapExtensionTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616

1717
class DoctrineClearIdentityMapExtensionTest extends TestCase
1818
{
19+
/**
20+
* @doesNotPerformAssertions
21+
*/
1922
public function testCouldBeConstructedWithRequiredArguments()
2023
{
2124
new DoctrineClearIdentityMapExtension($this->createRegistryMock());

pkg/enqueue-bundle/Tests/Unit/Consumption/Extension/DoctrinePingConnectionExtensionTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717

1818
class DoctrinePingConnectionExtensionTest extends TestCase
1919
{
20+
/**
21+
* @doesNotPerformAssertions
22+
*/
2023
public function testCouldBeConstructedWithRequiredAttributes()
2124
{
2225
new DoctrinePingConnectionExtension($this->createRegistryMock());

pkg/enqueue-bundle/Tests/Unit/Consumption/Extension/ResetServicesExtensionTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616

1717
class ResetServicesExtensionTest extends TestCase
1818
{
19+
/**
20+
* @doesNotPerformAssertions
21+
*/
1922
public function testCouldBeConstructedWithRequiredArguments()
2023
{
2124
new ResetServicesExtension($this->createResetterMock());

pkg/enqueue-bundle/Tests/Unit/DependencyInjection/ConfigurationTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ public function testShouldBeFinal()
2525
$this->assertClassFinal(Configuration::class);
2626
}
2727

28+
/**
29+
* @doesNotPerformAssertions
30+
*/
2831
public function testCouldBeConstructedWithDebugAsArgument()
2932
{
3033
new Configuration(true);

pkg/enqueue-bundle/Tests/Unit/DependencyInjection/EnqueueExtensionTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ public function testShouldBeFinal()
3030
$this->assertClassFinal(EnqueueExtension::class);
3131
}
3232

33+
/**
34+
* @doesNotPerformAssertions
35+
*/
3336
public function testCouldBeConstructedWithoutAnyArguments()
3437
{
3538
new EnqueueExtension();

pkg/enqueue-bundle/Tests/Unit/EnqueueBundleTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ public function testShouldExtendBundleClass()
1616
$this->assertClassExtends(Bundle::class, EnqueueBundle::class);
1717
}
1818

19+
/**
20+
* @doesNotPerformAssertions
21+
*/
1922
public function testCouldBeConstructedWithoutAnyArguments()
2023
{
2124
new EnqueueBundle();

pkg/enqueue-bundle/Tests/Unit/Profiler/MessageQueueCollectorTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ public function testShouldExtendDataCollectorClass()
2323
$this->assertClassExtends(DataCollector::class, MessageQueueCollector::class);
2424
}
2525

26+
/**
27+
* @doesNotPerformAssertions
28+
*/
2629
public function testCouldBeConstructedWithEmptyConstructor()
2730
{
2831
new MessageQueueCollector();

pkg/enqueue/Tests/ArrayProcessorRegistryTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ public function testShouldImplementProcessorRegistryInterface()
1818
$this->assertClassImplements(ProcessorRegistryInterface::class, ArrayProcessorRegistry::class);
1919
}
2020

21+
/**
22+
* @doesNotPerformAssertions
23+
*/
2124
public function testCouldBeConstructedWithoutAnyArgument()
2225
{
2326
new ArrayProcessorRegistry();

pkg/enqueue/Tests/Client/ChainExtensionTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ public function testShouldBeFinal()
2929
$this->assertClassFinal(ChainExtension::class);
3030
}
3131

32+
/**
33+
* @doesNotPerformAssertions
34+
*/
3235
public function testCouldBeConstructedWithExtensionsArray()
3336
{
3437
new ChainExtension([$this->createExtension(), $this->createExtension()]);

pkg/enqueue/Tests/Client/ConsumptionExtension/DelayRedeliveredMessageExtensionTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323

2424
class DelayRedeliveredMessageExtensionTest extends TestCase
2525
{
26+
/**
27+
* @doesNotPerformAssertions
28+
*/
2629
public function testCouldBeConstructedWithRequiredArguments()
2730
{
2831
new DelayRedeliveredMessageExtension($this->createDriverMock(), 12345);

pkg/enqueue/Tests/Client/ConsumptionExtension/ExclusiveCommandExtensionTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ public function testShouldBeFinal()
3434
$this->assertClassFinal(ExclusiveCommandExtension::class);
3535
}
3636

37+
/**
38+
* @doesNotPerformAssertions
39+
*/
3740
public function testCouldBeConstructedWithDriverAsFirstArgument()
3841
{
3942
new ExclusiveCommandExtension($this->createDriverStub());

pkg/enqueue/Tests/Client/ConsumptionExtension/FlushSpoolProducerExtensionTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ public function testShouldImplementEndExtensionInterface()
3030
$this->assertClassImplements(EndExtensionInterface::class, FlushSpoolProducerExtension::class);
3131
}
3232

33+
/**
34+
* @doesNotPerformAssertions
35+
*/
3336
public function testCouldBeConstructedWithSpoolProducerAsFirstArgument()
3437
{
3538
new FlushSpoolProducerExtension($this->createSpoolProducerMock());

pkg/enqueue/Tests/Client/ConsumptionExtension/LogExtensionTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ public function testShouldSubClassOfLogExtension()
5555
$this->assertClassExtends(\Enqueue\Consumption\Extension\LogExtension::class, LogExtension::class);
5656
}
5757

58+
/**
59+
* @doesNotPerformAssertions
60+
*/
5861
public function testCouldBeConstructedWithoutAnyArguments()
5962
{
6063
new LogExtension();

pkg/enqueue/Tests/Client/ConsumptionExtension/SetRouterPropertiesExtensionTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ public function testShouldImplementMessageReceivedExtensionInterface()
2727
$this->assertClassImplements(MessageReceivedExtensionInterface::class, SetRouterPropertiesExtension::class);
2828
}
2929

30+
/**
31+
* @doesNotPerformAssertions
32+
*/
3033
public function testCouldBeConstructedWithRequiredArguments()
3134
{
3235
new SetRouterPropertiesExtension($this->createDriverMock());

pkg/enqueue/Tests/Client/ConsumptionExtension/SetupBrokerExtensionTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ public function testShouldImplementStartExtensionInterface()
2121
$this->assertClassImplements(StartExtensionInterface::class, SetupBrokerExtension::class);
2222
}
2323

24+
/**
25+
* @doesNotPerformAssertions
26+
*/
2427
public function testCouldBeConstructedWithRequiredArguments()
2528
{
2629
new SetupBrokerExtension($this->createDriverMock());

pkg/enqueue/Tests/Client/DelegateProcessorTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414
class DelegateProcessorTest extends TestCase
1515
{
16+
/**
17+
* @doesNotPerformAssertions
18+
*/
1619
public function testCouldBeConstructedWithRequiredArguments()
1720
{
1821
new DelegateProcessor($this->createProcessorRegistryMock());

pkg/enqueue/Tests/Client/DriverFactoryTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ public function testShouldBeFinal()
6161
$this->assertTrue($rc->isFinal());
6262
}
6363

64+
/**
65+
* @doesNotPerformAssertions
66+
*/
6467
public function testCouldBeConstructedWithoutAnyArguments()
6568
{
6669
new DriverFactory();

pkg/enqueue/Tests/Client/DriverPreSendTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ public function testShouldBeFinal()
1919
self::assertClassFinal(DriverPreSend::class);
2020
}
2121

22+
/**
23+
* @doesNotPerformAssertions
24+
*/
2225
public function testCouldBeConstructedWithExpectedArguments()
2326
{
2427
new DriverPreSend(

pkg/enqueue/Tests/Client/Extension/PrepareBodyExtensionTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ public function testShouldImplementExtensionInterface()
2222
$this->assertTrue($rc->implementsInterface(PreSendCommandExtensionInterface::class));
2323
}
2424

25+
/**
26+
* @doesNotPerformAssertions
27+
*/
2528
public function testCouldConstructedWithoutAnyArguments()
2629
{
2730
new PrepareBodyExtension();

pkg/enqueue/Tests/Client/PostSendTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ public function testShouldBeFinal()
2121
self::assertClassFinal(PostSend::class);
2222
}
2323

24+
/**
25+
* @doesNotPerformAssertions
26+
*/
2427
public function testCouldBeConstructedWithExpectedArguments()
2528
{
2629
new PostSend(

pkg/enqueue/Tests/Client/PreSendTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ public function testShouldBeFinal()
1818
self::assertClassFinal(PreSend::class);
1919
}
2020

21+
/**
22+
* @doesNotPerformAssertions
23+
*/
2124
public function testCouldBeConstructedWithExpectedArguments()
2225
{
2326
new PreSend(

pkg/enqueue/Tests/Client/ProducerTest.php

+6
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,17 @@ public function testShouldBeFinal()
2424
self::assertClassFinal(Producer::class);
2525
}
2626

27+
/**
28+
* @doesNotPerformAssertions
29+
*/
2730
public function testCouldBeConstructedWithRequiredArguments()
2831
{
2932
new Producer($this->createDriverMock(), $this->createRpcFactoryMock());
3033
}
3134

35+
/**
36+
* @doesNotPerformAssertions
37+
*/
3238
public function testCouldBeConstructedWithOptionalArguments()
3339
{
3440
new Producer(

pkg/enqueue/Tests/Client/SpoolProducerTest.php

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ public function testShouldImplementProducerInterface()
1818
self::assertClassImplements(ProducerInterface::class, SpoolProducer::class);
1919
}
2020

21+
/**
22+
* @doesNotPerformAssertions
23+
*/
2124
public function testCouldBeConstructedWithRealProducer()
2225
{
2326
new SpoolProducer($this->createProducerMock());

0 commit comments

Comments
 (0)