68 lines
1.2 KiB
PHP
68 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Tests\Icinga\Protocol\Ldap;
|
|
/**
|
|
*
|
|
* Test class for Connection
|
|
* Created Tue, 12 Mar 2013 17:08:12 +0000
|
|
*
|
|
**/
|
|
class ConnectionTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
/**
|
|
* Test for Connection::GetDN()
|
|
*
|
|
**/
|
|
public function testGetDN()
|
|
{
|
|
$this->markTestIncomplete('testGetDN is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Connection::Root()
|
|
*
|
|
**/
|
|
public function testRoot()
|
|
{
|
|
$this->markTestIncomplete('testRoot is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Connection::Select()
|
|
*
|
|
**/
|
|
public function testSelect()
|
|
{
|
|
$this->markTestIncomplete('testSelect is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Connection::FetchOne()
|
|
*
|
|
**/
|
|
public function testFetchOne()
|
|
{
|
|
$this->markTestIncomplete('testFetchOne is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Connection::FetchRow()
|
|
*
|
|
**/
|
|
public function testFetchRow()
|
|
{
|
|
$this->markTestIncomplete('testFetchRow is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Connection::FetchAll()
|
|
*
|
|
**/
|
|
public function testFetchAll()
|
|
{
|
|
$this->markTestIncomplete('testFetchAll is not implemented yet');
|
|
}
|
|
|
|
}
|