59 lines
1.1 KiB
PHP
Executable File
59 lines
1.1 KiB
PHP
Executable File
<?php
|
|
|
|
namespace Tests\Icinga\Protocol\Livestatus;
|
|
/**
|
|
*
|
|
* Test class for Connection
|
|
* Created Wed, 16 Jan 2013 15:15:16 +0000
|
|
*
|
|
**/
|
|
class ConnectionTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
/**
|
|
* Test for Connection::HasTable()
|
|
*
|
|
**/
|
|
public function testHasTable()
|
|
{
|
|
$this->markTestIncomplete('testHasTable is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Connection::Select()
|
|
*
|
|
**/
|
|
public function testSelect()
|
|
{
|
|
$this->markTestIncomplete('testSelect is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Connection::FetchAll()
|
|
*
|
|
**/
|
|
public function testFetchAll()
|
|
{
|
|
$this->markTestIncomplete('testFetchAll is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Connection::Disconnect()
|
|
*
|
|
**/
|
|
public function testDisconnect()
|
|
{
|
|
$this->markTestIncomplete('testDisconnect is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Connection::__destruct()
|
|
*
|
|
**/
|
|
public function test__destruct()
|
|
{
|
|
$this->markTestIncomplete('test__destruct is not implemented yet');
|
|
}
|
|
|
|
}
|