diff options
author | knut <> | 2007-06-04 23:33:06 +0000 |
---|---|---|
committer | knut <> | 2007-06-04 23:33:06 +0000 |
commit | 996bb8664856b302c96e19c6899010ea72ababe6 (patch) | |
tree | 0daad116697c7c9f58bc74244277457ede412348 /tests/unit/Security/TAuthManagerTest.php | |
parent | b7d5fc392611f0cb7f1ff6d87b758cb9572c7806 (diff) |
added more unit test stubs
Diffstat (limited to 'tests/unit/Security/TAuthManagerTest.php')
-rw-r--r-- | tests/unit/Security/TAuthManagerTest.php | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/tests/unit/Security/TAuthManagerTest.php b/tests/unit/Security/TAuthManagerTest.php new file mode 100644 index 00000000..6e3c05a9 --- /dev/null +++ b/tests/unit/Security/TAuthManagerTest.php @@ -0,0 +1,67 @@ +<?php +require_once dirname(__FILE__).'/../phpunit.php'; + +Prado::using('System.Security.TAuthManager'); + +/** + * @package System.Security + */ +class TAuthManagerTest extends PHPUnit_Framework_TestCase { + + public function setUp() { + } + + public function tearDown() { + } + + public function testInit() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testUserManager() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testLoginPage() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testDoAuthentication() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testDoAuthorization() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testLeave() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testReturnUrl() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testOnAuthenticate() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testOnAuthorize() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testUpdateSessionUser() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testLogin() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testLogout() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + +} + +?> |