Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
45 | public function testCanSendNotification(){ |
||
46 | |||
47 | |||
48 | |||
49 | $this->smsMessage->shouldReceive('send') |
||
50 | ->once() |
||
51 | ->andReturn($this->smsMessage); |
||
52 | |||
53 | $this->notification->to46Elks($this->notifiable); |
||
54 | $response = $this->channel->send($this->notifiable, $this->notification); |
||
55 | |||
56 | $this->assertInstanceOf(FortySixElksSMS::class, $response); |
||
57 | |||
79 |