41 lines
678 B
PHP
Executable File
41 lines
678 B
PHP
Executable File
<?php
|
|
|
|
namespace Tests\Icinga\Ido;
|
|
/**
|
|
*
|
|
* Test class for Db
|
|
* Created Wed, 16 Jan 2013 15:15:16 +0000
|
|
*
|
|
**/
|
|
class DbTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
/**
|
|
* Test for Db::Module()
|
|
*
|
|
**/
|
|
public function testModule()
|
|
{
|
|
$this->markTestIncomplete('testModule is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Db::GetDb()
|
|
*
|
|
**/
|
|
public function testGetDb()
|
|
{
|
|
$this->markTestIncomplete('testGetDb is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Db::GetPrefix()
|
|
*
|
|
**/
|
|
public function testGetPrefix()
|
|
{
|
|
$this->markTestIncomplete('testGetPrefix is not implemented yet');
|
|
}
|
|
|
|
}
|