// Test that the instance retrieved using the given type is and instance of the given class
public AccessorModuleTest(TypeLiteral<?> interfaceType, Class<?> implClass) {
this.interfaceType = interfaceType;
this.implClass = implClass;
this.injector = Guice.createInjector(new AccessorModule(), new StoreNamesModule());
}