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.
16 lines
382 B
PHP
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);
|
|
}
|
|
}
|