diff --git a/cake/tests/cases/libs/cache/apc.test.php b/cake/tests/cases/libs/cache/apc.test.php new file mode 100644 index 000000000..575b68337 --- /dev/null +++ b/cake/tests/cases/libs/cache/apc.test.php @@ -0,0 +1,42 @@ + + * Copyright 2005-2007, Cake Software Foundation, Inc. + * 1785 E. Sahara Avenue, Suite 490-204 + * Las Vegas, Nevada 89104 + * + * Licensed under The Open Group Test Suite License + * Redistributions of files must retain the above copyright notice. + * + * @filesource + * @copyright Copyright 2005-2007, Cake Software Foundation, Inc. + * @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests + * @package cake.tests + * @subpackage cake.tests.cases.libs.cache + * @since CakePHP(tm) v 1.2.0.5434 + * @version $Revision$ + * @modifiedby $LastChangedBy$ + * @lastmodified $Date$ + * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License + */ +uses('cache', 'cache' . DS . 'apc'); +/** + * Short description for class. + * + * @package cake.tests + * @subpackage cake.tests.cases.libs.cache + */ +class APCEngineTest extends UnitTestCase { + + function skip() { + $this->skipIf(true, 'APCEngineTest not implemented'); + } +} +?> \ No newline at end of file diff --git a/cake/tests/cases/libs/cache/file.test.php b/cake/tests/cases/libs/cache/file.test.php new file mode 100644 index 000000000..719787996 --- /dev/null +++ b/cake/tests/cases/libs/cache/file.test.php @@ -0,0 +1,42 @@ + + * Copyright 2005-2007, Cake Software Foundation, Inc. + * 1785 E. Sahara Avenue, Suite 490-204 + * Las Vegas, Nevada 89104 + * + * Licensed under The Open Group Test Suite License + * Redistributions of files must retain the above copyright notice. + * + * @filesource + * @copyright Copyright 2005-2007, Cake Software Foundation, Inc. + * @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests + * @package cake.tests + * @subpackage cake.tests.cases.libs.cache + * @since CakePHP(tm) v 1.2.0.5434 + * @version $Revision$ + * @modifiedby $LastChangedBy$ + * @lastmodified $Date$ + * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License + */ +uses('cache', 'cache' . DS . 'file'); +/** + * Short description for class. + * + * @package cake.tests + * @subpackage cake.tests.cases.libs.cache + */ +class FileEngineTest extends UnitTestCase { + + function skip() { + $this->skipIf(true, 'FileEngineTest not implemented'); + } +} +?> \ No newline at end of file diff --git a/cake/tests/cases/libs/cache/memcache.test.php b/cake/tests/cases/libs/cache/memcache.test.php new file mode 100644 index 000000000..15ac2825b --- /dev/null +++ b/cake/tests/cases/libs/cache/memcache.test.php @@ -0,0 +1,42 @@ + + * Copyright 2005-2007, Cake Software Foundation, Inc. + * 1785 E. Sahara Avenue, Suite 490-204 + * Las Vegas, Nevada 89104 + * + * Licensed under The Open Group Test Suite License + * Redistributions of files must retain the above copyright notice. + * + * @filesource + * @copyright Copyright 2005-2007, Cake Software Foundation, Inc. + * @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests + * @package cake.tests + * @subpackage cake.tests.cases.libs.cache + * @since CakePHP(tm) v 1.2.0.5434 + * @version $Revision$ + * @modifiedby $LastChangedBy$ + * @lastmodified $Date$ + * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License + */ +uses('cache', 'cache' . DS . 'memcache'); +/** + * Short description for class. + * + * @package cake.tests + * @subpackage cake.tests.cases.libs.cache + */ +class MemcacheEngineTest extends UnitTestCase { + + function skip() { + $this->skipIf(true, 'MemcacheEngineTest not implemented'); + } +} +?> \ No newline at end of file diff --git a/cake/tests/cases/libs/cache/model.test.php b/cake/tests/cases/libs/cache/model.test.php new file mode 100644 index 000000000..826a69456 --- /dev/null +++ b/cake/tests/cases/libs/cache/model.test.php @@ -0,0 +1,42 @@ + + * Copyright 2005-2007, Cake Software Foundation, Inc. + * 1785 E. Sahara Avenue, Suite 490-204 + * Las Vegas, Nevada 89104 + * + * Licensed under The Open Group Test Suite License + * Redistributions of files must retain the above copyright notice. + * + * @filesource + * @copyright Copyright 2005-2007, Cake Software Foundation, Inc. + * @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests + * @package cake.tests + * @subpackage cake.tests.cases.libs.cache + * @since CakePHP(tm) v 1.2.0.5434 + * @version $Revision$ + * @modifiedby $LastChangedBy$ + * @lastmodified $Date$ + * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License + */ +uses('cache', 'cache' . DS . 'model'); +/** + * Short description for class. + * + * @package cake.tests + * @subpackage cake.tests.cases.libs.cache + */ +class ModelEngineTest extends UnitTestCase { + + function skip() { + $this->skipIf(true, 'ModelEngineTest not implemented'); + } +} +?> \ No newline at end of file diff --git a/cake/tests/cases/libs/cache/xcache.test.php b/cake/tests/cases/libs/cache/xcache.test.php new file mode 100644 index 000000000..591c06c8c --- /dev/null +++ b/cake/tests/cases/libs/cache/xcache.test.php @@ -0,0 +1,42 @@ + + * Copyright 2005-2007, Cake Software Foundation, Inc. + * 1785 E. Sahara Avenue, Suite 490-204 + * Las Vegas, Nevada 89104 + * + * Licensed under The Open Group Test Suite License + * Redistributions of files must retain the above copyright notice. + * + * @filesource + * @copyright Copyright 2005-2007, Cake Software Foundation, Inc. + * @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests + * @package cake.tests + * @subpackage cake.tests.cases.libs.cache + * @since CakePHP(tm) v 1.2.0.5434 + * @version $Revision$ + * @modifiedby $LastChangedBy$ + * @lastmodified $Date$ + * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License + */ +uses('cache', 'cache' . DS . 'xcache'); +/** + * Short description for class. + * + * @package cake.tests + * @subpackage cake.tests.cases.libs.cache + */ +class XcacheEngineTest extends UnitTestCase { + + function skip() { + $this->skipIf(true, 'XcacheEngineTest not implemented'); + } +} +?> \ No newline at end of file