mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-06-17 20:30:16 +02:00
Rename docs, tests and test/ui to doc, test and test/frontend to suite skeleton definition. refs #4212
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');
|
|
}
|
|
|
|
}
|