Skip to content

Commit

Permalink
For #939: Code review corrections.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulodamaso committed Jan 29, 2019
1 parent 09916f5 commit 249a06d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@
import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.junit.jupiter.api.extension.ParameterResolver;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.mockito.Mockito;
import org.mockito.invocation.InvocationOnMock;
Expand All @@ -58,7 +57,7 @@
* Integration test case for all checkstyle checks.
* @since 0.3
*/
@ExtendWith(ParameterResolver.class)
@RunWith(Parameterized.class)
public final class ChecksTest {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,14 @@
import java.util.Collection;
import org.hamcrest.Matchers;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.junit.jupiter.api.extension.ParameterResolver;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;

/**
* Tests for disabled rules.
* @since 0.16
*/
@ExtendWith(ParameterResolver.class)
@RunWith(Parameterized.class)
public final class PmdDisabledRulesTest {

/**
Expand Down

0 comments on commit 249a06d

Please sign in to comment.