<?php declare(strict_types=1); /* * Copyleft (C) 2017 http://sikofitt.com sikofitt@gmail.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ 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'); } }