Searched refs:testingPlugins (Results 1 – 2 of 2) sorted by relevance
71 private final Optional<ImmutableSet<BindingGraphPlugin>> testingPlugins; field in ComponentProcessor81 this.testingPlugins = Optional.empty(); in ComponentProcessor()84 private ComponentProcessor(Iterable<BindingGraphPlugin> testingPlugins) { in ComponentProcessor() argument85 this.testingPlugins = Optional.of(ImmutableSet.copyOf(testingPlugins)); in ComponentProcessor()93 public static ComponentProcessor forTesting(BindingGraphPlugin... testingPlugins) { in forTesting() argument94 return forTesting(Arrays.asList(testingPlugins)); in forTesting()102 public static ComponentProcessor forTesting(Iterable<BindingGraphPlugin> testingPlugins) { in forTesting() argument103 return new ComponentProcessor(testingPlugins); in forTesting()121 ProcessorComponent.factory().create(processingEnv, testingPlugins).inject(this); in initSteps()153 @BindsInstance @TestingPlugins Optional<ImmutableSet<BindingGraphPlugin>> testingPlugins); in create() argument
44 @TestingPlugins Optional<ImmutableSet<BindingGraphPlugin>> testingPlugins, in externalPlugins()46 return testingPlugins.orElseGet( in externalPlugins()