Eduardo Eljaiek
Eduardo Eljaiek
### TestNG Version 7.1.1 Version 7.1.1 allow users to provide DI Injector and how to do it is described in issue #2200 However it isn't described in [TestNG documentation](https://testng.org/doc/documentation-main.html#guice-dependency-injection)
Please update wiki's content according to the latest release .e.g https://github.com/Netflix/governator/wiki/Module-Dependencies ``` LifecycleInjector.builder() .withAdditionalModuleClasses(ApplicationModule.class) .build().createInjector(); ```` `withAdditionalModuleClasses()` has been deprecated https://github.com/Netflix/governator/wiki/Getting-Started ``` LifecycleManager manager = injector.getInstance(LifecycleManager.class); manager.start(); ``` Method `LifecycleManager...