summaryrefslogtreecommitdiff
path: root/tests/unit/Security/TSecurityManagerTest.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/TSecurityManagerTest.php
parentb7d5fc392611f0cb7f1ff6d87b758cb9572c7806 (diff)
added more unit test stubs
Diffstat (limited to 'tests/unit/Security/TSecurityManagerTest.php')
-rw-r--r--tests/unit/Security/TSecurityManagerTest.php59
1 files changed, 59 insertions, 0 deletions
diff --git a/tests/unit/Security/TSecurityManagerTest.php b/tests/unit/Security/TSecurityManagerTest.php
new file mode 100644
index 00000000..76029bde
--- /dev/null
+++ b/tests/unit/Security/TSecurityManagerTest.php
@@ -0,0 +1,59 @@
+<?php
+require_once dirname(__FILE__).'/../phpunit.php';
+
+Prado::using('System.Security.TSecurityManager');
+
+/**
+ * @package System.Security
+ */
+class TSecurityManagerTest extends PHPUnit_Framework_TestCase {
+
+ public function setUp() {
+ }
+
+ public function tearDown() {
+ }
+
+ public function testInit() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testValidationKey() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testEncryptionKey() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testValidation() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testEncryption() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testEncrypt() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testDecrypt() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testHashData() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testValidateData() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testComputeHMAC() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+}
+
+?>