Skip to content

Commit

Permalink
Moved TestEngineRegistry to launcher module
Browse files Browse the repository at this point in the history
  • Loading branch information
jlink committed Oct 28, 2015
1 parent b5da37d commit 0f960f5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
@@ -1,13 +1,13 @@
package org.junit.gen5.launcher;

import static org.junit.gen5.engine.TestEngineRegistry.lookupAllTestEngines;
import static org.junit.gen5.engine.TestListenerRegistry.notifyListeners;

import org.junit.gen5.engine.TestEngine;
import org.junit.gen5.engine.TestListener;
import org.junit.gen5.engine.TestListenerRegistry;
import org.junit.gen5.engine.TestPlanSpecification;

import static org.junit.gen5.engine.TestListenerRegistry.notifyListeners;
import static org.junit.gen5.launcher.TestEngineRegistry.lookupAllTestEngines;

public class Launcher {

public void registerTestListener(TestListener testListener) {
Expand Down
@@ -1,4 +1,6 @@
package org.junit.gen5.engine;
package org.junit.gen5.launcher;

import org.junit.gen5.engine.TestEngine;

import java.util.ServiceLoader;

Expand Down

0 comments on commit 0f960f5

Please sign in to comment.