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
663 B
25 lines
663 B
<?php |
|
|
|
namespace clagiordano\weblibs\configmanager\tests; |
|
|
|
use clagiordano\weblibs\configmanager\ConfigManager; |
|
|
|
/** |
|
* Class ConfigManagerTest |
|
* @package clagiordano\weblibs\configmanager\tests |
|
*/ |
|
class ConfigManagerTest extends AbstractConfigManagerTest |
|
{ |
|
protected $configFile = 'testsdata/sample_config_data.php'; |
|
|
|
public function setUp() |
|
{ |
|
parent::setUp(); |
|
|
|
$this->config = new ConfigManager("TestConfigData.php"); |
|
$this->assertInstanceOf('clagiordano\weblibs\configmanager\ConfigManager', $this->config); |
|
|
|
$this->assertFileExists($this->configFile); |
|
$this->config->loadConfig($this->configFile); |
|
} |
|
} |