summaryrefslogtreecommitdiff
path: root/tests/unit/Caching
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/Caching')
-rw-r--r--tests/unit/Caching/AllTests.php27
-rw-r--r--tests/unit/Caching/TCacheTest.php51
2 files changed, 78 insertions, 0 deletions
diff --git a/tests/unit/Caching/AllTests.php b/tests/unit/Caching/AllTests.php
new file mode 100644
index 00000000..072a6182
--- /dev/null
+++ b/tests/unit/Caching/AllTests.php
@@ -0,0 +1,27 @@
+<?php
+require_once dirname(__FILE__).'/../phpunit.php';
+
+if(!defined('PHPUnit_MAIN_METHOD')) {
+ define('PHPUnit_MAIN_METHOD', 'Caching_AllTests::main');
+}
+
+require_once 'TCacheTest.php';
+
+class Caching_AllTests {
+ public static function main() {
+ PHPUnit_TextUI_TestRunner::run(self::suite());
+ }
+
+ public static function suite() {
+ $suite = new PHPUnit_Framework_TestSuite('System.Caching');
+
+ $suite->addTestSuite('TCacheTest');
+
+ return $suite;
+ }
+}
+
+if(PHPUnit_MAIN_METHOD == 'Caching_AllTests::main') {
+ Caching_AllTests::main();
+}
+?>
diff --git a/tests/unit/Caching/TCacheTest.php b/tests/unit/Caching/TCacheTest.php
new file mode 100644
index 00000000..76df7903
--- /dev/null
+++ b/tests/unit/Caching/TCacheTest.php
@@ -0,0 +1,51 @@
+<?php
+require_once dirname(__FILE__).'/../phpunit.php';
+
+Prado::using('System.Caching.TCache');
+
+/**
+ * @package System.Caching
+ */
+class TCacheTest extends PHPUnit_Framework_TestCase {
+
+ public function setUp() {
+ }
+
+ public function tearDown() {
+ }
+
+ public function testInit() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testPrimaryCache() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testKeyPrefix() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testGet() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testSet() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testAdd() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testDelete() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+ public function testFlush() {
+ throw new PHPUnit_Framework_IncompleteTestError();
+ }
+
+}
+
+?>