mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-06-18 04:40:10 +02:00
Rename docs, tests and test/ui to doc, test and test/frontend to suite skeleton definition. refs #4212
54 lines
1.1 KiB
PHP
54 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace Tests\Icinga\Protocol\Ldap;
|
|
/**
|
|
*
|
|
* Test class for Ldaputils
|
|
* Created Tue, 12 Mar 2013 17:08:12 +0000
|
|
*
|
|
**/
|
|
class LdaputilsTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
/**
|
|
* Test for LdapUtils::ExplodeDN()
|
|
* Note: This method is static!
|
|
*
|
|
**/
|
|
public function testExplodeDN()
|
|
{
|
|
$this->markTestIncomplete('testExplodeDN is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for LdapUtils::ImplodeDN()
|
|
* Note: This method is static!
|
|
*
|
|
**/
|
|
public function testImplodeDN()
|
|
{
|
|
$this->markTestIncomplete('testImplodeDN is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for LdapUtils::QuoteForDN()
|
|
* Note: This method is static!
|
|
*
|
|
**/
|
|
public function testQuoteForDN()
|
|
{
|
|
$this->markTestIncomplete('testQuoteForDN is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for LdapUtils::QuoteForSearch()
|
|
* Note: This method is static!
|
|
*
|
|
**/
|
|
public function testQuoteForSearch()
|
|
{
|
|
$this->markTestIncomplete('testQuoteForSearch is not implemented yet');
|
|
}
|
|
|
|
}
|