. */ namespace Sikofitt\Tests\Config; use PHPUnit\Framework\TestCase; use Sikofitt\Config\DotConfig; class NeonFileTest extends TestCase { /** * @var DotConfig */ private $config; public function setUp(): void { $this->config = new DotConfig(__DIR__.'/../../../fixtures/config.neon'); $this->setUseErrorHandler(true); parent::setUp(); } public function testNeonConfig(): void { $arrayConfig['config'] = [ 'value' => 'neon', 'neon_test' => [ 'testing1', 'testing2', ], ]; $this->assertSame($arrayConfig, $this->config->all()); $this->assertInternalType('array', $this->config->all()); } public function testFailure(): void { $this->expectException('Nette\Neon\Exception'); $config = new DotConfig(__DIR__.'/../../../fixtures/failure/config.neon'); } }