/**
  * @expectedException \Magento\Framework\Model\Exception
  * @expectedExceptionMessage Attribute object is undefined
  */
 public function testGetAttributeException()
 {
     $this->_model->setAttribute(false);
     $this->_model->getAttribute();
 }