teambrain/tests/index.php

18 lines
302 B
PHP
Raw Normal View History

2023-08-28 12:54:38 +02:00
<?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')
// );
// }
}