mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-03 06:10:18 +02:00
This commit only contains the untested libaries from the incubator and autogenerated teststubs and is the basis for writing the tests refs #4250
78 lines
1.5 KiB
PHP
78 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace Tests\Icinga\Authentication;
|
|
/**
|
|
*
|
|
* Test class for Auth
|
|
* Created Fri, 07 Jun 2013 10:38:16 +0000
|
|
*
|
|
**/
|
|
class AuthTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
/**
|
|
* Test for Auth::IsAuthenticated()
|
|
*
|
|
**/
|
|
public function testIsAuthenticated()
|
|
{
|
|
$this->markTestIncomplete('testIsAuthenticated is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Auth::GetUsername()
|
|
*
|
|
**/
|
|
public function testGetUsername()
|
|
{
|
|
$this->markTestIncomplete('testGetUsername is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Auth::GetEmail()
|
|
*
|
|
**/
|
|
public function testGetEmail()
|
|
{
|
|
$this->markTestIncomplete('testGetEmail is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Auth::SetAuthenticatedUser()
|
|
*
|
|
**/
|
|
public function testSetAuthenticatedUser()
|
|
{
|
|
$this->markTestIncomplete('testSetAuthenticatedUser is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Auth::ForgetAuthentication()
|
|
*
|
|
**/
|
|
public function testForgetAuthentication()
|
|
{
|
|
$this->markTestIncomplete('testForgetAuthentication is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Auth::HasPermission()
|
|
*
|
|
**/
|
|
public function testHasPermission()
|
|
{
|
|
$this->markTestIncomplete('testHasPermission is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for Auth::GetInstance()
|
|
* Note: This method is static!
|
|
*
|
|
**/
|
|
public function testGetInstance()
|
|
{
|
|
$this->markTestIncomplete('testGetInstance is not implemented yet');
|
|
}
|
|
|
|
}
|