Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
42 | public function testCanSendNotification() |
||
43 | { |
||
44 | $this->smsMessage->shouldReceive('send') |
||
45 | ->once() |
||
46 | ->andReturn($this->smsMessage); |
||
47 | |||
48 | $this->notification->to46Elks($this->notifiable); |
||
49 | $response = $this->channel->send($this->notifiable, $this->notification); |
||
50 | |||
51 | $this->assertInstanceOf(FortySixElksSMS::class, $response); |
||
52 | } |
||
72 |