From 724c98a6ad15a5ff4ea8ebe79e15541d6221b25e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sat, 5 Nov 2022 05:31:56 +0100 Subject: [PATCH] Continued: - moved to same package as the concrete classes are --- test/org/mxchange/jcoreutils/{test => }/CoreUtilsTestSuite.xml | 2 +- .../jcoreutils/{test => }/comparable/ComparableUtilsTest.java | 3 +-- .../mxchange/jcoreutils/{test => }/dates/DateUtilsTest.java | 3 +-- .../jcoreutils/{test => }/number/SafeNumberUtilsTest.java | 3 +-- 4 files changed, 4 insertions(+), 7 deletions(-) rename test/org/mxchange/jcoreutils/{test => }/CoreUtilsTestSuite.xml (92%) rename test/org/mxchange/jcoreutils/{test => }/comparable/ComparableUtilsTest.java (95%) rename test/org/mxchange/jcoreutils/{test => }/dates/DateUtilsTest.java (96%) rename test/org/mxchange/jcoreutils/{test => }/number/SafeNumberUtilsTest.java (99%) diff --git a/test/org/mxchange/jcoreutils/test/CoreUtilsTestSuite.xml b/test/org/mxchange/jcoreutils/CoreUtilsTestSuite.xml similarity index 92% rename from test/org/mxchange/jcoreutils/test/CoreUtilsTestSuite.xml rename to test/org/mxchange/jcoreutils/CoreUtilsTestSuite.xml index 9fdbc12..896252f 100644 --- a/test/org/mxchange/jcoreutils/test/CoreUtilsTestSuite.xml +++ b/test/org/mxchange/jcoreutils/CoreUtilsTestSuite.xml @@ -18,7 +18,7 @@ --> - + diff --git a/test/org/mxchange/jcoreutils/test/comparable/ComparableUtilsTest.java b/test/org/mxchange/jcoreutils/comparable/ComparableUtilsTest.java similarity index 95% rename from test/org/mxchange/jcoreutils/test/comparable/ComparableUtilsTest.java rename to test/org/mxchange/jcoreutils/comparable/ComparableUtilsTest.java index 8a7987d..5c25e89 100644 --- a/test/org/mxchange/jcoreutils/test/comparable/ComparableUtilsTest.java +++ b/test/org/mxchange/jcoreutils/comparable/ComparableUtilsTest.java @@ -14,9 +14,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package org.mxchange.jcoreutils.test.comparable; +package org.mxchange.jcoreutils.comparable; -import org.mxchange.jcoreutils.comparable.ComparableUtils; import org.testng.Assert; import org.testng.annotations.Test; diff --git a/test/org/mxchange/jcoreutils/test/dates/DateUtilsTest.java b/test/org/mxchange/jcoreutils/dates/DateUtilsTest.java similarity index 96% rename from test/org/mxchange/jcoreutils/test/dates/DateUtilsTest.java rename to test/org/mxchange/jcoreutils/dates/DateUtilsTest.java index 35a27de..33fe3ce 100644 --- a/test/org/mxchange/jcoreutils/test/dates/DateUtilsTest.java +++ b/test/org/mxchange/jcoreutils/dates/DateUtilsTest.java @@ -14,11 +14,10 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package org.mxchange.jcoreutils.test.dates; +package org.mxchange.jcoreutils.dates; import java.util.Calendar; import java.util.Date; -import org.mxchange.jcoreutils.dates.DateUtils; import org.testng.Assert; import org.testng.annotations.Test; diff --git a/test/org/mxchange/jcoreutils/test/number/SafeNumberUtilsTest.java b/test/org/mxchange/jcoreutils/number/SafeNumberUtilsTest.java similarity index 99% rename from test/org/mxchange/jcoreutils/test/number/SafeNumberUtilsTest.java rename to test/org/mxchange/jcoreutils/number/SafeNumberUtilsTest.java index ca6bd3b..60a4280 100644 --- a/test/org/mxchange/jcoreutils/test/number/SafeNumberUtilsTest.java +++ b/test/org/mxchange/jcoreutils/number/SafeNumberUtilsTest.java @@ -14,10 +14,9 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package org.mxchange.jcoreutils.test.number; +package org.mxchange.jcoreutils.number; import java.math.BigDecimal; -import org.mxchange.jcoreutils.number.SafeNumberUtils; import org.testng.Assert; import org.testng.annotations.DataProvider; import org.testng.annotations.Test; -- 2.39.5