/**
  * @expectedException \Phaza\SingleTableInheritance\Exceptions\SingleTableInheritanceInvalidAttributesException
  */
 public function testSetFilteredAttributeshrowsIfConfigured()
 {
     $bike = new Bike();
     $bike->setFilteredAttributes(['fuel' => 'diesel']);
 }