51 lines
882 B
PHP
Executable File
51 lines
882 B
PHP
Executable File
<?php
|
|
|
|
namespace Tests\Icinga;
|
|
/**
|
|
*
|
|
* Test class for Config
|
|
* Created Wed, 16 Jan 2013 15:15:16 +0000
|
|
*
|
|
**/
|
|
class ConfigTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
/**
|
|
* Test for Config::Get()
|
|
*
|
|
**/
|
|
public function testGet()
|
|
{
|
|
$this->markTestIncomplete('testGet is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Config::__get()
|
|
*
|
|
**/
|
|
public function test__get()
|
|
{
|
|
$this->markTestIncomplete('test__get is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Config::__set()
|
|
*
|
|
**/
|
|
public function test__set()
|
|
{
|
|
$this->markTestIncomplete('test__set is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Config::Create()
|
|
* Note: This method is static!
|
|
*
|
|
**/
|
|
public function testCreate()
|
|
{
|
|
$this->markTestIncomplete('testCreate is not implemented yet');
|
|
}
|
|
|
|
}
|