add(10, 'test'); $this->assertFalse(true, "An exception must be thrown"); } catch (\Exception $e) { $this->assertInstanceOf(CalculatorException::class, $e); $this->assertEquals("Adding not real numbers", $e->getMessage()); } } }