. */ namespace Sikofitt\Tests\Config; use PHPUnit\Framework\TestCase; use Sikofitt\Config\DotConfig; class PhpFileTest extends TestCase { /** * @var DotConfig */ private $config; public function setUp(): void { $this->config = new DotConfig(__DIR__.'/../../../fixtures/config.php'); parent::setUp(); } public function testPhpConfig(): void { $arrayConfig['config'] = [ 'value' => 'php', 'php_test' => [ 'testing1', 'testing2', ], ]; $this->assertSame($arrayConfig, $this->config->all()); $this->assertInternalType('array', $this->config->all()); } public function testFailure(): void { $this->expectException(\TypeError::class); $config = new DotConfig(__DIR__.'/../../../fixtures/failure/config.php'); } }