Page MenuHomeDevCentral

[DO NOT MERGE] Use Laravel WithoutEvents test trait
AbandonedPublic

Authored by dereckson on Jan 9 2016, 15:16.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Sep 30, 17:45
Unknown Object (File)
Mon, Sep 30, 17:26
Unknown Object (File)
Sun, Sep 22, 19:45
Unknown Object (File)
Tue, Sep 17, 12:15
Unknown Object (File)
Tue, Sep 17, 07:54
Unknown Object (File)
Sat, Sep 14, 22:18
Unknown Object (File)
Sat, Sep 14, 22:18
Unknown Object (File)
Sep 5 2024, 05:09
Subscribers
None

Details

Reviewers
None
Summary

D195 introduced TestCase::disableEvents, as the Laravel methods
MocksApplicationServices::expectEvents and ::withoutEvents don't
mock the listen method.

We can use the Laravel implementation now it has been fixed at
the framework level.

Test Plan

phpunit --no-coverage

Diff Detail

Repository
rNOTIF Notifications center
Lint
No Lint Coverage
Unit
Tests Passed
Branch
use-laravel-events-mock
Build Status
Buildable 250
Build 250: arc lint + arc unit

Event Timeline

dereckson retitled this revision from to [DO NOT MERGE] Use Laravel WithoutEvents test trait.
dereckson updated this object.
dereckson edited the test plan for this revision. (Show Details)

Upstream not interested by the change, but provides a simpler solution.

TestCase::disableEvents()
$this->withoutEvents();
Events::shouldReceive('listen');
[RuntimeException]                                                                             
Error Output: PHP Fatal error:  Class 'Events' not found in /home/ubuntu/workspace/notificati  
ons/tests/TestCase.php on line 44