/** * @param AbstractCrudObject $subject */ public function assertCannotCreate(AbstractCrudObject $subject) { $has_throw_exception = false; try { $subject->create(); } catch (\Exception $e) { $has_throw_exception = true; } $this->assertTrue($has_throw_exception); }