diff options
Diffstat (limited to 'tests/unit/Security/TAuthorizationRuleTest.php')
-rw-r--r-- | tests/unit/Security/TAuthorizationRuleTest.php | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/tests/unit/Security/TAuthorizationRuleTest.php b/tests/unit/Security/TAuthorizationRuleTest.php new file mode 100644 index 00000000..e20542dc --- /dev/null +++ b/tests/unit/Security/TAuthorizationRuleTest.php @@ -0,0 +1,51 @@ +<?php +require_once dirname(__FILE__).'/../phpunit.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(); + } + +} + +?> |