Skip to content

Commit 0268b78

Browse files
committed
chore: update method name in event docs
1 parent 25b63b1 commit 0268b78

File tree

1 file changed

+5
-5
lines changed
  • src/Web/Documentation/content/main/2-tempest-in-depth

1 file changed

+5
-5
lines changed

src/Web/Documentation/content/main/2-tempest-in-depth/03-events.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ By extending {`Tempest\Framework\Testing\IntegrationTest`} from your test case,
158158
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.
159159

160160
```php
161-
// Replace the event bus in the container
162-
$this->eventBus->fake();
161+
// Prevents events from being handled
162+
$this->eventBus->preventEventHandling();
163163

164164
// Assert that an event has been dispatched
165165
$this->eventBus->assertDispatched(AircraftRegistered::class);
@@ -185,10 +185,10 @@ $this->eventBus->assertListeningTo(AircraftRegistered::class);
185185

186186
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.
187187

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.
189189

190190
```php tests/MyServiceTest.php
191-
$this->eventBus->fake();
191+
$this->eventBus->preventEventHandling();
192192
```
193193

194194
### Testing a method-based handler
@@ -212,7 +212,7 @@ This handler may be tested by resolving the service class from the container, an
212212

213213
```php src/AircraftObserverTest.php
214214
// Replace the event bus in the container
215-
$this->eventBus->fake();
215+
$this->eventBus->preventEventHandling();
216216

217217
// Resolve the service class
218218
$observer = $this->container->get(AircraftObserver::class);

0 commit comments

Comments
 (0)