From 61bb16ee2e5f0a66234e1575242169a10fde47b5 Mon Sep 17 00:00:00 2001 From: xue <> Date: Fri, 7 Jul 2006 14:54:15 +0000 Subject: Merge from 3.0 branch till 1253. --- tests/UnitTests/framework/Data/utMemCache.php | 66 --------------------------- 1 file changed, 66 deletions(-) delete mode 100644 tests/UnitTests/framework/Data/utMemCache.php (limited to 'tests/UnitTests/framework/Data/utMemCache.php') diff --git a/tests/UnitTests/framework/Data/utMemCache.php b/tests/UnitTests/framework/Data/utMemCache.php deleted file mode 100644 index cbe9bdad..00000000 --- a/tests/UnitTests/framework/Data/utMemCache.php +++ /dev/null @@ -1,66 +0,0 @@ -fail('TMemCache is not tested. PHP extension "memcache" is required by TMemCache.'); - return; - } - $cache=new TMemCache; - - $this->assertTrue($cache->getHost()==='localhost'); - $cache->setHost('localhost2'); - $this->assertTrue($cache->getHost()==='localhost2'); - - $this->assertTrue($cache->getPort()===11211); - $cache->setPort(1000); - $this->assertTrue($cache->getPort()===1000); - - $cache->init(null,null); - try - { - $cache->setHost('newhost'); - $this->fail('exception not raised when setting Server after init'); - } - catch(TInvalidOperationException $e) - { - $this->pass(); - } - try - { - $cache->setPort(10000); - $this->fail('exception not raised when setting Port after init'); - } - catch(TInvalidOperationException $e) - { - $this->pass(); - } - } - - public function testBasicOperations() - { - if(!extension_loaded('memcache')) - { - $this->fail('TMemCache is not tested. PHP extension "memcache" is required by TMemCache.'); - return; - } - $cache=new TMemCache; - $cache->init(null,null); - $this->setCache($cache); - $this->basicOperations(); - $this->setCache(null); - } -} - -?> \ No newline at end of file -- cgit v1.2.3