Files
ik-codex/test/tests/Games/Hytale/SmokeTest.php
indifferentketchup 484d3b88a3 Scaffold Hytale game stubs
Add empty per-component subdirectories under src/{Analyser,Log,Parser,Pattern}/Hytale/
with .gitkeep markers, plus HytaleDetective stub extending the base Detective with
a TODO body. Smoke test under test/tests/Games/Hytale/ asserts the detective is
instantiable.
2026-04-30 15:31:11 +00:00

16 lines
382 B
PHP

<?php
namespace IndifferentKetchup\Codex\Test\Tests\Games\Hytale;
use IndifferentKetchup\Codex\Detective\Hytale\HytaleDetective;
use PHPUnit\Framework\TestCase;
class SmokeTest extends TestCase
{
public function testDetectiveIsInstantiable(): void
{
$detective = new HytaleDetective();
$this->assertInstanceOf(HytaleDetective::class, $detective);
}
}