| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 28 | public function testAcceptsEmail(): void |
||
| 29 | { |
||
| 30 | $this->assertTrue(DnsHelper::acceptsEmails('google.com')); |
||
| 31 | $this->assertTrue(DnsHelper::acceptsEmails('[email protected]')); |
||
| 32 | $this->assertFalse(DnsHelper::acceptsEmails(self::NOT_EXISTS_DOMAIN)); |
||
| 33 | $this->assertFalse(DnsHelper::acceptsEmails(self::NOT_EXISTS_DOMAIN_EMAIL)); |
||
| 34 | } |
||
| 35 | } |