Skip to content

Commit

Permalink
SHRINKRES-262 Renamed tests that didn't contain TestCase in their name,
Browse files Browse the repository at this point in the history
so they are executed
  • Loading branch information
MatousJobanek committed Jan 4, 2017
1 parent 4179e7f commit 0425077
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
*
*/
@RunWith(Parameterized.class)
public class JarGenerator {
public class JarGeneratorTestCase {
private String name;
private Class<?>[] content;

Expand Down Expand Up @@ -94,7 +94,7 @@ public static Collection<Object[]> jars() {
return Arrays.asList(data);
}

public JarGenerator(String name, Class<?>[] content) {
public JarGeneratorTestCase(String name, Class<?>[] content) {
this.name = name;
this.content = content;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
*
*/
@RunWith(Parameterized.class)
public class WarGenerator {
public class WarGeneratorTestCase {
private String name;
private Class<?>[] classes;
private String[] directories;
Expand All @@ -50,7 +50,7 @@ public static Collection<Object[]> jars() {
return Arrays.asList(data);
}

public WarGenerator(String name, Class<?>[] classes, String[] directories) {
public WarGeneratorTestCase(String name, Class<?>[] classes, String[] directories) {
this.name = name;
this.classes = classes;
this.directories = directories;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*
* @author <a href="mailto:mmatloka@gmail.com">Michal Matloka</a>
*/
public class MavenModelResolverTest {
public class MavenModelResolverTestCase {

/**
* Tests if newCopy() gives independent instances.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
/**
* @author Florian Besser
*/
public class PackageDirHelperTest {
public class PackageDirHelperTestCase {

@Rule
public TemporaryFolder tempFolder = new TemporaryFolder();
Expand Down

0 comments on commit 0425077

Please sign in to comment.