summaryrefslogtreecommitdiff
path: root/tests/unit/Security/TSecurityManagerTest.php
diff options
context:
space:
mode:
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();
+ }
+
+}
+
+?>