Skip to content

Commit

Permalink
Prefix Test methods with public to make them visible to maven
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesRabauer committed Feb 2, 2024
1 parent b96feba commit f0e390c
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void defaults(final RecipeSpec recipeSpec)
}

@Test
void testSimpleSingle()
public void testSimpleSingle()
{
this.rewriteRun
(
Expand Down Expand Up @@ -79,7 +79,7 @@ public A()
}

@Test
void testSimpleMultiple()
public void testSimpleMultiple()
{
this.rewriteRun
(
Expand Down Expand Up @@ -141,7 +141,7 @@ public B()
}

@Test
void testAlreadyAdded()
public void testAlreadyAdded()
{
this.rewriteRun
(
Expand All @@ -165,7 +165,7 @@ public A()
}

@Test
void testSimpleNoAnnotation()
public void testSimpleNoAnnotation()
{
this.rewriteRun
(
Expand All @@ -184,7 +184,7 @@ public A()
}

@Test
void testSimpleNoAnnotationAndAnnotation()
public void testSimpleNoAnnotationAndAnnotation()
{
this.rewriteRun
(
Expand Down

0 comments on commit f0e390c

Please sign in to comment.