136 lines
2.8 KiB
PHP
136 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace Tests\Icinga\Application;
|
|
/**
|
|
*
|
|
* Test class for Bootstrap
|
|
* Created Thu, 07 Feb 2013 10:07:13 +0000
|
|
*
|
|
**/
|
|
class BootstrapTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
/**
|
|
* Test for Bootstrap::AddModule()
|
|
*
|
|
**/
|
|
public function testAddModule()
|
|
{
|
|
$this->markTestIncomplete('testAddModule is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Bootstrap::GetApplicationDir()
|
|
*
|
|
**/
|
|
public function testGetApplicationDir()
|
|
{
|
|
$this->markTestIncomplete('testGetApplicationDir is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Bootstrap::GetModuleDir()
|
|
*
|
|
**/
|
|
public function testGetModuleDir()
|
|
{
|
|
$this->markTestIncomplete('testGetModuleDir is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Bootstrap::HasModule()
|
|
*
|
|
**/
|
|
public function testHasModule()
|
|
{
|
|
$this->markTestIncomplete('testHasModule is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Bootstrap::IsLegacy()
|
|
*
|
|
**/
|
|
public function testIsLegacy()
|
|
{
|
|
$this->markTestIncomplete('testIsLegacy is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Bootstrap::IsRunningOnCli()
|
|
*
|
|
**/
|
|
public function testIsRunningOnCli()
|
|
{
|
|
$this->markTestIncomplete('testIsRunningOnCli is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Bootstrap::GetLecacyBasedir()
|
|
*
|
|
**/
|
|
public function testGetLecacyBasedir()
|
|
{
|
|
$this->markTestIncomplete('testGetLecacyBasedir is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Bootstrap::Dispatch()
|
|
*
|
|
**/
|
|
public function testDispatch()
|
|
{
|
|
$this->markTestIncomplete('testDispatch is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Bootstrap::Cli()
|
|
* Note: This method is static!
|
|
*
|
|
**/
|
|
public function testCli()
|
|
{
|
|
$this->markTestIncomplete('testCli is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Bootstrap::ForIcingaWeb1x()
|
|
* Note: This method is static!
|
|
*
|
|
**/
|
|
public function testForIcingaWeb1x()
|
|
{
|
|
$this->markTestIncomplete('testForIcingaWeb1x is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Bootstrap::Web()
|
|
* Note: This method is static!
|
|
*
|
|
**/
|
|
public function testWeb()
|
|
{
|
|
$this->markTestIncomplete('testWeb is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Bootstrap::Embedded()
|
|
* Note: This method is static!
|
|
*
|
|
**/
|
|
public function testEmbedded()
|
|
{
|
|
$this->markTestIncomplete('testEmbedded is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Bootstrap::GetInstance()
|
|
* Note: This method is static!
|
|
*
|
|
**/
|
|
public function testGetInstance()
|
|
{
|
|
$this->markTestIncomplete('testGetInstance is not implemented yet');
|
|
}
|
|
|
|
}
|