Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | public function setUp() |
||
24 | { |
||
25 | parent::setUp(); |
||
26 | $this->dispatcher = new \Illuminate\Events\Dispatcher(); |
||
27 | |||
28 | $this->channel = new FortySixElksChannel($this->dispatcher); |
||
29 | |||
30 | $this->smsMessage = Mockery::mock(FortySixElksSMS::class); |
||
31 | |||
32 | $this->notifiable = new TestNotifiable(); |
||
33 | |||
34 | $this->notification = new TestNotification($this->smsMessage); |
||
35 | } |
||
72 |