public function testIsXInvalid()
 {
     $this->model->name = 'Valid bear';
     $this->model->type = 'XXX PornoStar Bear';
     $this->model->danger_level = "XXX";
     $this->setExpectedException(ValidationException::class);
     $this->model->save();
 }