51 lines
942 B
PHP
51 lines
942 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Icinga\Application;
|
||
|
/**
|
||
|
*
|
||
|
* Test class for Config
|
||
|
* Created Thu, 07 Feb 2013 10:07:13 +0000
|
||
|
*
|
||
|
**/
|
||
|
class ConfigTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Test for Config::ListAll()
|
||
|
*
|
||
|
**/
|
||
|
public function testListAll()
|
||
|
{
|
||
|
$this->markTestIncomplete('testListAll is not implemented yet');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test for Config::GetConfigDir()
|
||
|
*
|
||
|
**/
|
||
|
public function testGetConfigDir()
|
||
|
{
|
||
|
$this->markTestIncomplete('testGetConfigDir is not implemented yet');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test for Config::__get()
|
||
|
*
|
||
|
**/
|
||
|
public function test__get()
|
||
|
{
|
||
|
$this->markTestIncomplete('test__get is not implemented yet');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test for Config::GetInstance()
|
||
|
* Note: This method is static!
|
||
|
*
|
||
|
**/
|
||
|
public function testGetInstance()
|
||
|
{
|
||
|
$this->markTestIncomplete('testGetInstance is not implemented yet');
|
||
|
}
|
||
|
|
||
|
}
|