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 testShouldImplementProcessorInterface()
2424 $ this ->assertClassImplements (Processor::class, AsyncProcessor::class);
2525 }
2626
27- /**
28- * @doesNotPerformAssertions
29- */
30- public function testCouldBeConstructedWithRegistryAndProxyEventDispatcher ()
31- {
32- new AsyncProcessor ($ this ->createRegistryMock (), $ this ->createProxyEventDispatcherMock ());
33- }
34-
3527 public function testRejectIfMessageMissingEventNameProperty ()
3628 {
3729 $ processor = new AsyncProcessor ($ this ->createRegistryMock (), $ this ->createProxyEventDispatcherMock ());
Original file line number Diff line number Diff line change @@ -21,14 +21,6 @@ public function testShouldImplementEventTransformerInterface()
2121 $ this ->assertClassImplements (EventTransformer::class, PhpSerializerEventTransformer::class);
2222 }
2323
24- /**
25- * @doesNotPerformAssertions
26- */
27- public function testCouldBeConstructedWithoutAnyArguments ()
28- {
29- new PhpSerializerEventTransformer ($ this ->createContextStub ());
30- }
31-
3224 public function testShouldReturnMessageWithPhpSerializedEventAsBodyOnToMessage ()
3325 {
3426 $ transformer = new PhpSerializerEventTransformer ($ this ->createContextStub ());
Original file line number Diff line number Diff line change @@ -18,14 +18,6 @@ public function testShouldImplementRegistryInterface()
1818 $ this ->assertClassImplements (Registry::class, SimpleRegistry::class);
1919 }
2020
21- /**
22- * @doesNotPerformAssertions
23- */
24- public function testCouldBeConstructedWithEventsMapAndTransformersMapAsArguments ()
25- {
26- new SimpleRegistry ([], []);
27- }
28-
2921 public function testShouldAllowGetTransportNameByEventName ()
3022 {
3123 $ registry = new SimpleRegistry ([
You can’t perform that action at this time.
0 commit comments