From 6d15bc8cfa8fcc26d97399395c8cb70057b0397b Mon Sep 17 00:00:00 2001 From: tomaytotomato <971697+tomaytotomato@users.noreply.github.com> Date: Tue, 23 Jul 2024 18:23:59 +0100 Subject: [PATCH] Making test classes public --- src/test/java/com/tomaytotomato/usecase/FindCityTest.java | 2 +- .../com/tomaytotomato/usecase/FindCountriesByStateTest.java | 2 +- .../com/tomaytotomato/usecase/FindCountryByISOCodeTest.java | 2 +- src/test/java/com/tomaytotomato/usecase/FindCountryTest.java | 2 +- src/test/java/com/tomaytotomato/usecase/FindStateTest.java | 2 +- src/test/java/com/tomaytotomato/usecase/SearchLocationTest.java | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/test/java/com/tomaytotomato/usecase/FindCityTest.java b/src/test/java/com/tomaytotomato/usecase/FindCityTest.java index a2e63b3..20f7457 100644 --- a/src/test/java/com/tomaytotomato/usecase/FindCityTest.java +++ b/src/test/java/com/tomaytotomato/usecase/FindCityTest.java @@ -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; diff --git a/src/test/java/com/tomaytotomato/usecase/FindCountriesByStateTest.java b/src/test/java/com/tomaytotomato/usecase/FindCountriesByStateTest.java index 5c8704b..ecc270d 100644 --- a/src/test/java/com/tomaytotomato/usecase/FindCountriesByStateTest.java +++ b/src/test/java/com/tomaytotomato/usecase/FindCountriesByStateTest.java @@ -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; diff --git a/src/test/java/com/tomaytotomato/usecase/FindCountryByISOCodeTest.java b/src/test/java/com/tomaytotomato/usecase/FindCountryByISOCodeTest.java index 2528b55..f488b65 100644 --- a/src/test/java/com/tomaytotomato/usecase/FindCountryByISOCodeTest.java +++ b/src/test/java/com/tomaytotomato/usecase/FindCountryByISOCodeTest.java @@ -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; diff --git a/src/test/java/com/tomaytotomato/usecase/FindCountryTest.java b/src/test/java/com/tomaytotomato/usecase/FindCountryTest.java index e8c02f4..8ed79a7 100644 --- a/src/test/java/com/tomaytotomato/usecase/FindCountryTest.java +++ b/src/test/java/com/tomaytotomato/usecase/FindCountryTest.java @@ -14,7 +14,7 @@ import org.junit.jupiter.params.provider.CsvSource; @TestInstance(TestInstance.Lifecycle.PER_CLASS) -class FindCountryTest { +public class FindCountryTest { private FindCountry locationService; diff --git a/src/test/java/com/tomaytotomato/usecase/FindStateTest.java b/src/test/java/com/tomaytotomato/usecase/FindStateTest.java index ac30baf..1bb2c6d 100644 --- a/src/test/java/com/tomaytotomato/usecase/FindStateTest.java +++ b/src/test/java/com/tomaytotomato/usecase/FindStateTest.java @@ -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; diff --git a/src/test/java/com/tomaytotomato/usecase/SearchLocationTest.java b/src/test/java/com/tomaytotomato/usecase/SearchLocationTest.java index cf07630..75ce579 100644 --- a/src/test/java/com/tomaytotomato/usecase/SearchLocationTest.java +++ b/src/test/java/com/tomaytotomato/usecase/SearchLocationTest.java @@ -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;