protected ISetup doGetSetup() {
return new TargetPlatformStandaloneSetup() {
public Injector createInjector() {
SharedStateModule _sharedStateModule = new SharedStateModule();
TargetPlatformActivator _instance = TargetPlatformActivator.getInstance();
TargetPlatformUiModule _targetPlatformUiModule = new TargetPlatformUiModule(_instance);
Module _mixin = Modules2.mixin(
TestContentAssist.MOCK_RUNTIME_MODULE, _sharedStateModule,
((Module) _targetPlatformUiModule));
return Guice.createInjector(_mixin);
}