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.
This commit is contained in:
15
test/tests/Games/Hytale/SmokeTest.php
Normal file
15
test/tests/Games/Hytale/SmokeTest.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user