Use composer as application autoloader

This commit is contained in:
Romain Neutron
2013-01-18 17:47:25 +01:00
parent 358cdddcc6
commit 2069d40544
784 changed files with 1031 additions and 1806 deletions

View File

@@ -0,0 +1,56 @@
<?php
namespace Alchemy\Tests\Phrasea\Cache;
use Alchemy\Phrasea\Cache\MemcacheCache;
class MemcacheCacheTest extends \PHPUnit_Framework_TestCase
{
/**
* @var MemcacheCache
*/
protected $object;
public function setUp()
{
$this->object = new MemcacheCache();
if ( ! class_exists('Memcache')) {
$this->markTestSkipped('No memcache extension');
}
$memcache = new \Memcache();
if ( ! @$memcache->connect('localhost', 11211)) {
$this->markTestSkipped('No memcache server');
}
$this->object->setMemcache($memcache);
}
public function testIsServer()
{
$this->assertTrue(is_bool($this->object->isServer()));
}
public function testGetStats()
{
$this->assertTrue(is_array($this->object->getStats()) || is_null($this->object->getStats()));
}
public function testGet()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
public function testDeleteMulti()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}