18 lines
302 B
PHP
18 lines
302 B
PHP
|
<?php
|
||
|
// main test runner
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
final class EmailTest extends TestCase
|
||
|
{
|
||
|
// public function testCanBeCreatedFromValidEmailAddress(): void
|
||
|
// {
|
||
|
// $this->assertInstanceOf(
|
||
|
// Email::class,
|
||
|
// Email::fromString('user@example.com')
|
||
|
// );
|
||
|
// }
|
||
|
|
||
|
}
|