You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
683 B
25 lines
683 B
5 months ago
|
<?php
|
||
|
|
||
|
namespace clagiordano\weblibs\configmanager\tests;
|
||
|
|
||
|
use clagiordano\weblibs\configmanager\YamlConfigManager;
|
||
|
|
||
|
/**
|
||
|
* Class YamlConfigManagerTest
|
||
|
* @package clagiordano\weblibs\configmanager\tests
|
||
|
*/
|
||
|
class YamlConfigManagerTest extends AbstractConfigManagerTest
|
||
|
{
|
||
|
protected $configFile = 'testsdata/sample_config_data.yml';
|
||
|
|
||
|
public function setUp()
|
||
|
{
|
||
|
parent::setUp();
|
||
|
|
||
|
$this->config = new YamlConfigManager("TestConfigData.yml");
|
||
|
$this->assertInstanceOf('clagiordano\weblibs\configmanager\YamlConfigManager', $this->config);
|
||
|
|
||
|
$this->assertFileExists($this->configFile);
|
||
|
$this->config->loadConfig($this->configFile);
|
||
|
}
|
||
|
}
|