/**
  * @covers Veles\View\Adapters\NativeAdapter::isCached
  */
 public function testIsCached()
 {
     $expected = false;
     $result = $this->object->isCached('Frontend/index.phtml');
     $msg = 'Wrong NativeAdapter::isCached() result!';
     $this->assertSame($expected, $result, $msg);
 }