/**
	 * Testing isSupported().
	 *
	 * @return void
	 */
	public function testIsSupported()
	{
		$this->assertThat(
			$this->object->isSupported(),
			$this->isTrue()
		);
	}
 /**
  * @testdox  The cache handler is supported in this environment
  */
 public function testIsSupported()
 {
     $this->assertTrue($this->handler->isSupported(), 'Claims the cache handler is not supported.');
 }