Add empty per-component subdirectories under src/{Analyser,Log,Parser,Pattern}/ProjectZomboid/
with .gitkeep markers, plus ProjectZomboidDetective stub extending the base Detective with
a TODO body. Smoke test under test/tests/Games/ProjectZomboid/ asserts the detective is
instantiable.
16 lines
422 B
PHP
16 lines
422 B
PHP
<?php
|
|
|
|
namespace IndifferentKetchup\Codex\Test\Tests\Games\ProjectZomboid;
|
|
|
|
use IndifferentKetchup\Codex\Detective\ProjectZomboid\ProjectZomboidDetective;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class SmokeTest extends TestCase
|
|
{
|
|
public function testDetectiveIsInstantiable(): void
|
|
{
|
|
$detective = new ProjectZomboidDetective();
|
|
$this->assertInstanceOf(ProjectZomboidDetective::class, $detective);
|
|
}
|
|
}
|