68 lines
1.3 KiB
PHP
68 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Tests\Icinga\Authentication;
|
|
/**
|
|
*
|
|
* Test class for Credentials
|
|
* Created Mon, 10 Jun 2013 07:54:34 +0000
|
|
*
|
|
**/
|
|
class CredentialsTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
/**
|
|
* Test for Credentials::GetUsername()
|
|
*
|
|
**/
|
|
public function testGetUsername()
|
|
{
|
|
$this->markTestIncomplete('testGetUsername is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Credentials::SetUsername()
|
|
*
|
|
**/
|
|
public function testSetUsername()
|
|
{
|
|
$this->markTestIncomplete('testSetUsername is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Credentials::GetPassword()
|
|
*
|
|
**/
|
|
public function testGetPassword()
|
|
{
|
|
$this->markTestIncomplete('testGetPassword is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Credentials::SetPassword()
|
|
*
|
|
**/
|
|
public function testSetPassword()
|
|
{
|
|
$this->markTestIncomplete('testSetPassword is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Credentials::GetDomain()
|
|
*
|
|
**/
|
|
public function testGetDomain()
|
|
{
|
|
$this->markTestIncomplete('testGetDomain is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Credentials::SetDomain()
|
|
*
|
|
**/
|
|
public function testSetDomain()
|
|
{
|
|
$this->markTestIncomplete('testSetDomain is not implemented yet');
|
|
}
|
|
|
|
}
|