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