Valinor/tests/Unit/Definition/Repository/Cache/Compiler/FunctionDefinitionCompilerTest.php

21 lines
494 B
PHP
Raw Normal View History

<?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());
}
}