Skip to content

Commit

Permalink
make visible for 3rd party tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hcoles committed Nov 1, 2024
1 parent d93b3c2 commit 5586542
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ public static ClientPluginServices makeForContextLoader() {
return new ClientPluginServices(IsolationUtils.getContextClassLoader());
}

Collection<? extends TestPluginFactory> findTestFrameworkPlugins() {
public Collection<? extends TestPluginFactory> findTestFrameworkPlugins() {
return ServiceLoader.load(TestPluginFactory.class, this.loader);
}

Collection<? extends MutationEngineFactory> findMutationEngines() {
public Collection<? extends MutationEngineFactory> findMutationEngines() {
return ServiceLoader.load(MutationEngineFactory.class, this.loader);
}

Collection<? extends EnvironmentResetPlugin> findResets() {
public Collection<? extends EnvironmentResetPlugin> findResets() {
return ServiceLoader.load(EnvironmentResetPlugin.class, this.loader);
}

Expand Down

0 comments on commit 5586542

Please sign in to comment.