61 lines
1.1 KiB
PHP
61 lines
1.1 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Icinga\Application;
|
||
|
/**
|
||
|
*
|
||
|
* Test class for Loader
|
||
|
* Created Thu, 07 Feb 2013 10:07:13 +0000
|
||
|
*
|
||
|
**/
|
||
|
class LoaderTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Test for Loader::SetModuleDir()
|
||
|
*
|
||
|
**/
|
||
|
public function testSetModuleDir()
|
||
|
{
|
||
|
$this->markTestIncomplete('testSetModuleDir is not implemented yet');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test for Loader::AddModule()
|
||
|
*
|
||
|
**/
|
||
|
public function testAddModule()
|
||
|
{
|
||
|
$this->markTestIncomplete('testAddModule is not implemented yet');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test for Loader::LoadClass()
|
||
|
*
|
||
|
**/
|
||
|
public function testLoadClass()
|
||
|
{
|
||
|
$this->markTestIncomplete('testLoadClass is not implemented yet');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test for Loader::Register()
|
||
|
* Note: This method is static!
|
||
|
*
|
||
|
**/
|
||
|
public function testRegister()
|
||
|
{
|
||
|
$this->markTestIncomplete('testRegister is not implemented yet');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test for Loader::GetInstance()
|
||
|
* Note: This method is static!
|
||
|
*
|
||
|
**/
|
||
|
public function testGetInstance()
|
||
|
{
|
||
|
$this->markTestIncomplete('testGetInstance is not implemented yet');
|
||
|
}
|
||
|
|
||
|
}
|