/tests/org.jnario.tests/src/org/jnario/jnario/test/util/ExtendedSuiteInjectorProvider.java

http://github.com/bmwcarit/Jnario · Java · 34 lines · 23 code · 4 blank · 7 comment · 0 complexity · 5e7fd3cd216ba00ae4e047ba117281cb MD5 · raw file

  1. /*******************************************************************************
  2. * Copyright (c) 2012 BMW Car IT and others.
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Eclipse Public License v1.0
  5. * which accompanies this distribution, and is available at
  6. * http://www.eclipse.org/legal/epl-v10.html
  7. *******************************************************************************/
  8. package org.jnario.jnario.test.util;
  9. import org.jnario.suite.SuiteInjectorProvider;
  10. import org.jnario.suite.SuiteRuntimeModule;
  11. import org.jnario.suite.SuiteStandaloneSetup;
  12. import com.google.inject.Guice;
  13. import com.google.inject.Injector;
  14. public class ExtendedSuiteInjectorProvider extends SuiteInjectorProvider {
  15. protected Injector internalCreateInjector() {
  16. return new SuiteStandaloneSetup(){
  17. public Injector createInjector() {
  18. return Guice.createInjector(new SuiteRuntimeModule(){
  19. public void configure(com.google.inject.Binder binder) {
  20. super.configure(binder);
  21. binder.bind(BehaviorExecutor.class).to(SuiteExecutor.class);
  22. };
  23. public ClassLoader bindClassLoaderToInstance() {
  24. return getClass().getClassLoader();
  25. };
  26. });
  27. }
  28. }.createInjectorAndDoEMFRegistration();
  29. }
  30. }