/**
	 * Testing isSupported().
	 *
	 * @return void
	 */
	public function testIsSupported()
	{
		$this->assertThat(
			$this->object->isSupported(),
			$this->equalTo(is_writable(JPATH_BASE . '/cache')),
			'Claims File is not loaded.'
		);
	}
 /**
  * Sets up the fixture, for example, opens a network connection.
  * This method is called before a test is executed.
  *
  * @return  void
  */
 protected function setUp()
 {
     if (!JCacheStorageFile::isSupported() || $this->isBlacklisted('file')) {
         $this->markTestSkipped('The file cache handler is not supported on this system.');
     }
     parent::setUp();
     $this->handler = new JCacheStorageFile(array('cachebase' => JPATH_CACHE));
     // Override the lifetime because the JCacheStorage API multiplies it by 60 (converts minutes to seconds)
     $this->handler->_lifetime = 2;
 }
示例#3
0
 /**
  * Testing isSupported().
  *
  * @return void
  */
 public function testIsSupported()
 {
     $this->assertEquals($this->extensionAvailable, $this->object->isSupported(), 'Claims File is not loaded.');
 }