/**
  * @covers Veles\View\Adapters\NativeAdapter::__construct
  */
 public function testConstruct()
 {
     $expected = $this->object;
     $result = $this->object->getDriver();
     $msg = 'Wrong NativeAdapter::__construct() behavior!';
     $this->assertSame($expected, $result, $msg);
 }