You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/Web/Documentation/content/main/2-tempest-in-depth/03-events.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -158,8 +158,8 @@ By extending {`Tempest\Framework\Testing\IntegrationTest`} from your test case,
158
158
These utilities include a way to replace the event bus with a testing implementation, as well as a few assertion methods to ensure that events have been dispatched or are being listened to.
When testing code that dispatches events, you may want to prevent Tempest from handling them. This can be useful when the event’s handlers are tested separately, or when the side-effects of these handlers are not desired for this test case.
187
187
188
-
To disable event handling, the event bus instance must be replaced with a testing implementation in the container. This may be achieved by calling the `fake()` method on the `eventBus` property.
188
+
To disable event handling, the event bus instance must be replaced with a testing implementation in the container. This may be achieved by calling the `preventEventHandling()` method on the `eventBus` property.
189
189
190
190
```php tests/MyServiceTest.php
191
-
$this->eventBus->fake();
191
+
$this->eventBus->preventEventHandling();
192
192
```
193
193
194
194
### Testing a method-based handler
@@ -212,7 +212,7 @@ This handler may be tested by resolving the service class from the container, an
0 commit comments