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
68 lines
1.3 KiB
PHP
68 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Tests\Icinga\Authentication;
|
|
/**
|
|
*
|
|
* Test class for User
|
|
* Created Fri, 07 Jun 2013 10:38:16 +0000
|
|
*
|
|
**/
|
|
class UserTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
/**
|
|
* Test for User::ListGroups()
|
|
*
|
|
**/
|
|
public function testListGroups()
|
|
{
|
|
$this->markTestIncomplete('testListGroups is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for User::IsMemberOf()
|
|
*
|
|
**/
|
|
public function testIsMemberOf()
|
|
{
|
|
$this->markTestIncomplete('testIsMemberOf is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for User::GetPermissionList()
|
|
*
|
|
**/
|
|
public function testGetPermissionList()
|
|
{
|
|
$this->markTestIncomplete('testGetPermissionList is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for User::HasPermission()
|
|
*
|
|
**/
|
|
public function testHasPermission()
|
|
{
|
|
$this->markTestIncomplete('testHasPermission is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for User::GrantPermission()
|
|
*
|
|
**/
|
|
public function testGrantPermission()
|
|
{
|
|
$this->markTestIncomplete('testGrantPermission is not implemented yet');
|
|
}
|
|
|
|
/**
|
|
* Test for User::RevokePermission()
|
|
*
|
|
**/
|
|
public function testRevokePermission()
|
|
{
|
|
$this->markTestIncomplete('testRevokePermission is not implemented yet');
|
|
}
|
|
|
|
}
|