mirror of
https://github.com/danog/Valinor.git
synced 2025-01-10 22:59:04 +01:00
21 lines
494 B
PHP
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());
|
||
|
}
|
||
|
}
|