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)
Wed, Jun 4, 14:49
Unknown Object (File)
Tue, Jun 3, 04:29
Unknown Object (File)
Thu, May 22, 16:02
Unknown Object (File)
Thu, May 22, 12:57
Unknown Object (File)
Thu, May 22, 05:19
Unknown Object (File)
Thu, May 22, 05:10
Unknown Object (File)
Wed, May 21, 20:46
Unknown Object (File)
Wed, May 14, 21:46
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