summaryrefslogtreecommitdiff
path: root/tests/unit/Security/TUserManagerTest.php
diff options
context:
space:
mode:
authorknut <>2007-06-04 23:33:06 +0000
committerknut <>2007-06-04 23:33:06 +0000
commit996bb8664856b302c96e19c6899010ea72ababe6 (patch)
tree0daad116697c7c9f58bc74244277457ede412348 /tests/unit/Security/TUserManagerTest.php
parentb7d5fc392611f0cb7f1ff6d87b758cb9572c7806 (diff)
added more unit test stubs
Diffstat (limited to 'tests/unit/Security/TUserManagerTest.php')
-rw-r--r--tests/unit/Security/TUserManagerTest.php55
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();
+ }
+
+}
+
+?>