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