assertEquals("WebDriver module is not configured!\n \nHello world", $exception->getMessage()); } public function testCanBeCreatedForModuleObject() { $exception = new \Codeception\Exception\ModuleConfigException( new \Codeception\Module\CodeHelper(make_container()), "Hello world" ); $this->assertEquals("CodeHelper module is not configured!\n \nHello world", $exception->getMessage()); } }