blob: 5d5f2d9744a6f484b86795a64249aeba6e9e0e69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<?php
Prado::using('System.Security.TAuthorizationRule');
/**
* @package System.Security
*/
class TAuthorizationRuleTest extends PHPUnit_Framework_TestCase {
public function setUp() {
}
public function tearDown() {
}
public function testConstruct() {
throw new PHPUnit_Framework_IncompleteTestError();
}
public function testAction() {
throw new PHPUnit_Framework_IncompleteTestError();
}
public function testUsers() {
throw new PHPUnit_Framework_IncompleteTestError();
}
public function testRoles() {
throw new PHPUnit_Framework_IncompleteTestError();
}
public function testVerb() {
throw new PHPUnit_Framework_IncompleteTestError();
}
public function testGuestApplied() {
throw new PHPUnit_Framework_IncompleteTestError();
}
public function testEveryoneApplied() {
throw new PHPUnit_Framework_IncompleteTestError();
}
public function testIsUserAllowed() {
throw new PHPUnit_Framework_IncompleteTestError();
}
}
?>
|