/**
  * @dataProvider hasAttributeProvider
  * @covers eZ\Publish\Core\MVC\Legacy\Templating\Adapter\ValueObjectAdapter::hasAttribute
  *
  * @param string$attributeName
  * @param bool $isset
  */
 public function testHasAttribute($attributeName, $isset)
 {
     $this->assertSame($isset, $this->adapter->hasAttribute($attributeName));
 }