Skip to content

Commit

Permalink
Making test classes public
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaytotomato committed Jul 23, 2024
1 parent c24bd3a commit 6d15bc8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/test/java/com/tomaytotomato/usecase/FindCityTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import org.junit.jupiter.params.provider.CsvSource;

@TestInstance(TestInstance.Lifecycle.PER_CLASS)
class FindCityTest {
public class FindCityTest {

private final FindCity locationService;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import org.junit.jupiter.params.provider.CsvSource;

@TestInstance(TestInstance.Lifecycle.PER_CLASS)
class FindCountriesByStateTest {
public class FindCountriesByStateTest {

private final FindCountry locationService;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import org.junit.jupiter.params.provider.CsvSource;

@TestInstance(TestInstance.Lifecycle.PER_CLASS)
class FindCountryByISOCodeTest {
public class FindCountryByISOCodeTest {

private final FindCountry locationService;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import org.junit.jupiter.params.provider.CsvSource;

@TestInstance(TestInstance.Lifecycle.PER_CLASS)
class FindCountryTest {
public class FindCountryTest {

private FindCountry locationService;

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/tomaytotomato/usecase/FindStateTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import org.junit.jupiter.params.provider.CsvSource;

@TestInstance(TestInstance.Lifecycle.PER_CLASS)
class FindStateTest {
public class FindStateTest {

private final FindState locationService;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import org.junit.jupiter.params.provider.CsvSource;

@TestInstance(TestInstance.Lifecycle.PER_CLASS)
class SearchLocationTest {
public class SearchLocationTest {

private final SearchLocation searchLocationService;

Expand Down

0 comments on commit 6d15bc8

Please sign in to comment.