68 lines
1.3 KiB
PHP
Executable File
68 lines
1.3 KiB
PHP
Executable File
<?php
|
|
|
|
namespace Tests\Icinga\Backend;
|
|
/**
|
|
*
|
|
* Test class for Monitoringobjectlist
|
|
* Created Wed, 16 Jan 2013 15:15:16 +0000
|
|
*
|
|
**/
|
|
class MonitoringobjectlistTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
/**
|
|
* Test for MonitoringObjectList::Current()
|
|
*
|
|
**/
|
|
public function testCurrent()
|
|
{
|
|
$this->markTestIncomplete('testCurrent is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for MonitoringObjectList::Next()
|
|
*
|
|
**/
|
|
public function testNext()
|
|
{
|
|
$this->markTestIncomplete('testNext is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for MonitoringObjectList::Key()
|
|
*
|
|
**/
|
|
public function testKey()
|
|
{
|
|
$this->markTestIncomplete('testKey is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for MonitoringObjectList::Valid()
|
|
*
|
|
**/
|
|
public function testValid()
|
|
{
|
|
$this->markTestIncomplete('testValid is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for MonitoringObjectList::Rewind()
|
|
*
|
|
**/
|
|
public function testRewind()
|
|
{
|
|
$this->markTestIncomplete('testRewind is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for MonitoringObjectList::__isset()
|
|
*
|
|
**/
|
|
public function test__isset()
|
|
{
|
|
$this->markTestIncomplete('test__isset is not implemented yet');
|
|
}
|
|
|
|
}
|