mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-08-18 01:43:19 +00:00
14 lines
251 B
PHP
14 lines
251 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Tests\EmailValidator;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class LexerTokensTest extends TestCase
|
|
{
|
|
public function testToken()
|
|
{
|
|
$this->markTestIncomplete("implement better lexer tokens");
|
|
}
|
|
}
|