24 lines
396 B
PHP
24 lines
396 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Icinga;
|
||
|
/**
|
||
|
*
|
||
|
* Test class for Backend
|
||
|
* Created Wed, 16 Jan 2013 15:15:16 +0000
|
||
|
*
|
||
|
**/
|
||
|
class BackendTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Test for Backend::GetInstance()
|
||
|
* Note: This method is static!
|
||
|
*
|
||
|
**/
|
||
|
public function testGetInstance()
|
||
|
{
|
||
|
$this->markTestIncomplete('testGetInstance is not implemented yet');
|
||
|
}
|
||
|
|
||
|
}
|