Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class EmailTest extends UnitTestCase |
||
11 | { |
||
12 | /** @test */ |
||
13 | public function has_access_to_send_client() |
||
14 | { |
||
15 | $client = $this->mockAPIRequest(); |
||
16 | |||
17 | $email = new Email($client); |
||
18 | |||
19 | $this->assertInstanceOf(Send::class, $email->send()); |
||
20 | } |
||
21 | |||
22 | /** @test */ |
||
23 | public function has_access_to_email_status_check() |
||
30 | } |
||
31 | } |
||
32 |