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/Caching/TCacheTest.php | |
parent | b7d5fc392611f0cb7f1ff6d87b758cb9572c7806 (diff) |
added more unit test stubs
Diffstat (limited to 'tests/unit/Caching/TCacheTest.php')
-rw-r--r-- | tests/unit/Caching/TCacheTest.php | 51 |
1 files changed, 51 insertions, 0 deletions
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(); + } + +} + +?> |