| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | public function testEmailValidator() |
||
| 18 | { |
||
| 19 | $client = $this->getClientWithMockedGet('validator-email.json'); |
||
| 20 | |||
| 21 | $client = new ValidatorsClient($this->getConfig(), $client); |
||
| 22 | $entry = $client->email('[email protected]'); |
||
| 23 | |||
| 24 | $this->assertInstanceOf(EmailValidation::class, $entry); |
||
| 25 | } |
||
| 37 |