| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Created by PhpStorm. |
| 5 |
* User: alex |
| 6 |
* Date: 29.12.16 |
| 7 |
* Time: 00:22 |
| 8 |
*/ |
| 9 |
class UamAccessHandlerTest extends PHPUnit_Framework_TestCase |
| 10 |
{ |
| 11 |
/** |
| 12 |
* @covers UamAccessHandler::registeredPostType |
| 13 |
*/ |
| 14 |
public function testRegisteredPostType() |
| 15 |
{ |
| 16 |
} |
| 17 |
|
| 18 |
public function testIsPostableType() |
| 19 |
{ |
| 20 |
} |
| 21 |
|
| 22 |
public function testGetUserAccessManager() |
| 23 |
{ |
| 24 |
} |
| 25 |
|
| 26 |
public function testGetObjectTypes() |
| 27 |
{ |
| 28 |
} |
| 29 |
|
| 30 |
public function testGetPostableTypes() |
| 31 |
{ |
| 32 |
} |
| 33 |
|
| 34 |
public function testGetAllObjectTypes() |
| 35 |
{ |
| 36 |
} |
| 37 |
|
| 38 |
public function testGetAllObjectTypesMap() |
| 39 |
{ |
| 40 |
} |
| 41 |
|
| 42 |
public function test__call() |
| 43 |
{ |
| 44 |
} |
| 45 |
|
| 46 |
public function test_filterUserGroups() |
| 47 |
{ |
| 48 |
} |
| 49 |
|
| 50 |
public function testIsValidObjectType() |
| 51 |
{ |
| 52 |
} |
| 53 |
|
| 54 |
public function testGetUserGroups() |
| 55 |
{ |
| 56 |
} |
| 57 |
|
| 58 |
public function testAddUserGroup() |
| 59 |
{ |
| 60 |
} |
| 61 |
|
| 62 |
public function testDeleteUserGroup() |
| 63 |
{ |
| 64 |
} |
| 65 |
|
| 66 |
public function testGetUserGroupsForObject() |
| 67 |
{ |
| 68 |
} |
| 69 |
|
| 70 |
public function testUnsetUserGroupsForObject() |
| 71 |
{ |
| 72 |
} |
| 73 |
|
| 74 |
public function testCheckObjectAccess() |
| 75 |
{ |
| 76 |
} |
| 77 |
|
| 78 |
public function test_getUserGroupsForUserAsSqlString() |
| 79 |
{ |
| 80 |
} |
| 81 |
|
| 82 |
public function testGetTermsForUser() |
| 83 |
{ |
| 84 |
} |
| 85 |
|
| 86 |
public function testGetPostsForUser() |
| 87 |
{ |
| 88 |
} |
| 89 |
|
| 90 |
public function testGetExcludedPosts() |
| 91 |
{ |
| 92 |
} |
| 93 |
|
| 94 |
public function testCheckUserIp() |
| 95 |
{ |
| 96 |
} |
| 97 |
|
| 98 |
public function test_getUserRole() |
| 99 |
{ |
| 100 |
} |
| 101 |
|
| 102 |
public function testUserIsAdmin() |
| 103 |
{ |
| 104 |
} |
| 105 |
|
| 106 |
public function testCheckUserAccess() |
| 107 |
{ |
| 108 |
} |
| 109 |
|
| 110 |
public function testGetRolesOrdered() |
| 111 |
{ |
| 112 |
} |
| 113 |
|
| 114 |
public function testRegisterPlObject() |
| 115 |
{ |
| 116 |
} |
| 117 |
|
| 118 |
public function testGetPlObject() |
| 119 |
{ |
| 120 |
} |
| 121 |
|
| 122 |
public function testGetPlObjects() |
| 123 |
{ |
| 124 |
} |
| 125 |
} |
| 126 |
|