Skip to content

Commit

Permalink
moved tasks to appropriate package
Browse files Browse the repository at this point in the history
  • Loading branch information
mmerdes committed Oct 29, 2015
1 parent 86869a8 commit dd4c3bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Expand Up @@ -8,7 +8,7 @@
* http://www.eclipse.org/legal/epl-v10.html
*/

package org.junit.gen5.engine.junit5;
package org.junit.gen5.engine.junit5.task;

import static java.util.stream.Collectors.*;
import static org.junit.gen5.commons.util.ReflectionUtils.*;
Expand All @@ -25,7 +25,7 @@
* @author Matthias Merdes
* @since 5.0
*/
class JavaTestMethodTask<T> implements ExecutionTask {
public class JavaTestMethodTask<T> implements ExecutionTask {

private final Class<T> target;
private final T instance;
Expand Down
Expand Up @@ -8,13 +8,14 @@
* http://www.eclipse.org/legal/epl-v10.html
*/

package org.junit.gen5.engine.junit5;
package org.junit.gen5.engine.junit5.task;

import static org.junit.gen5.commons.util.ReflectionUtils.*;

import java.lang.reflect.*;

import org.junit.gen5.engine.*;
import org.junit.gen5.engine.junit5.*;
import org.junit.gen5.engine.junit5.task.*;
import org.opentestalliance.*;

Expand Down

0 comments on commit dd4c3bc

Please sign in to comment.