18 lines
302 B
PHP
Executable File
18 lines
302 B
PHP
Executable File
<?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')
|
|
// );
|
|
// }
|
|
|
|
}
|