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/TUserTest.php | |
parent | b7d5fc392611f0cb7f1ff6d87b758cb9572c7806 (diff) |
added more unit test stubs
Diffstat (limited to 'tests/unit/Security/TUserTest.php')
-rw-r--r-- | tests/unit/Security/TUserTest.php | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/tests/unit/Security/TUserTest.php b/tests/unit/Security/TUserTest.php new file mode 100644 index 00000000..67ac6eb4 --- /dev/null +++ b/tests/unit/Security/TUserTest.php @@ -0,0 +1,59 @@ +<?php +require_once dirname(__FILE__).'/../phpunit.php'; + +Prado::using('System.Security.TUser'); + +/** + * @package System.Security + */ +class TUserTest extends PHPUnit_Framework_TestCase { + + public function setUp() { + } + + public function tearDown() { + } + + public function testConstruct() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testManager() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testName() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testIsGuest() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testRoles() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testIsInRole() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testSaveToString() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testLoadFromString() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testState() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + + public function testStateChanged() { + throw new PHPUnit_Framework_IncompleteTestError(); + } + +} + +?> |