diff options
Diffstat (limited to 'tests/unit/Security/TUserManagerTest.php')
-rw-r--r-- | tests/unit/Security/TUserManagerTest.php | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/tests/unit/Security/TUserManagerTest.php b/tests/unit/Security/TUserManagerTest.php new file mode 100644 index 00000000..8937ba22 --- /dev/null +++ b/tests/unit/Security/TUserManagerTest.php @@ -0,0 +1,55 @@ +<?php +require_once dirname(__FILE__).'/../phpunit.php'; + +Prado::using('System.Security.TUserManager'); + +/** + * @package System.Security + */ +class TUserManagerTest extends PHPUnit_Framework_TestCase { + + public function setUp() { + } + + public function tearDown() { + } + + public function testInit() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testUsers() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testRoles() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testUserFile() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testGuestName() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testPasswordMode() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testValidateUser() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testUser() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testSwitchToGuest() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + +} + +?> |