Valinor/tests/Unit/Definition/Repository/Cache/Compiler/FunctionDefinitionCompilerTest.php
2022-02-19 19:58:28 +01:00

21 lines
494 B
PHP

<?php
declare(strict_types=1);
namespace CuyZ\Valinor\Tests\Unit\Definition\Repository\Cache\Compiler;
use AssertionError;
use CuyZ\Valinor\Definition\Repository\Cache\Compiler\FunctionDefinitionCompiler;
use PHPUnit\Framework\TestCase;
use stdClass;
final class FunctionDefinitionCompilerTest extends TestCase
{
public function test_todo(): void
{
$this->expectException(AssertionError::class);
(new FunctionDefinitionCompiler())->compile(new stdClass());
}
}