41 lines
731 B
PHP
41 lines
731 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Icinga\Backend;
|
||
|
/**
|
||
|
*
|
||
|
* Test class for Livestatus
|
||
|
* Created Wed, 16 Jan 2013 15:15:16 +0000
|
||
|
*
|
||
|
**/
|
||
|
class LivestatusTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Test for Livestatus::Init()
|
||
|
*
|
||
|
**/
|
||
|
public function testInit()
|
||
|
{
|
||
|
$this->markTestIncomplete('testInit is not implemented yet');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test for Livestatus::Summary()
|
||
|
*
|
||
|
**/
|
||
|
public function testSummary()
|
||
|
{
|
||
|
$this->markTestIncomplete('testSummary is not implemented yet');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test for Livestatus::ListServices()
|
||
|
*
|
||
|
**/
|
||
|
public function testListServices()
|
||
|
{
|
||
|
$this->markTestIncomplete('testListServices is not implemented yet');
|
||
|
}
|
||
|
|
||
|
}
|