summaryrefslogtreecommitdiff
path: root/tests/unit/Web/UI/TSessionPageStatePersisterTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/Web/UI/TSessionPageStatePersisterTest.php')
-rw-r--r--tests/unit/Web/UI/TSessionPageStatePersisterTest.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/unit/Web/UI/TSessionPageStatePersisterTest.php b/tests/unit/Web/UI/TSessionPageStatePersisterTest.php
new file mode 100644
index 00000000..1422c4c7
--- /dev/null
+++ b/tests/unit/Web/UI/TSessionPageStatePersisterTest.php
@@ -0,0 +1,28 @@
+<?php
+require_once dirname(__FILE__).'/../../phpunit.php';
+
+Prado::using('System.Web.UI.TSessionPageStatePersister');
+
+/**
+ * @package System.Web.UI
+ */
+class TSessionPageStatePersisterTest extends PHPUnit_Framework_TestCase {
+
+ public function testSetAndGetPage() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testSetAndGetHistorySize() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testSave() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testLoad() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+}
+?> \ No newline at end of file