summaryrefslogtreecommitdiff
path: root/src/test/java/DNPM/services
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2024-05-10 10:25:07 +0200
committerPaul-Christian Volkmer2024-05-10 10:25:07 +0200
commit70f901cfdc7ce58ed3f233c05441fa92ce5af0b4 (patch)
tree9d825bd211308dc1e03fef68592b3c82ff372f96 /src/test/java/DNPM/services
parent99dfff1e04024025097b65354adeb92e1fb45307 (diff)
chore: Entferne nicht benötigte Imports
Diffstat (limited to 'src/test/java/DNPM/services')
-rw-r--r--src/test/java/DNPM/services/consent/MrConsentManagerServiceTest.java2
-rw-r--r--src/test/java/DNPM/services/consent/UkwConsentManagerServiceTest.java1
-rw-r--r--src/test/java/DNPM/services/strahlentherapie/DefaultStrahlentherapieServiceTest.java2
-rw-r--r--src/test/java/DNPM/services/systemtherapie/DefaultSystemtherapieServiceTest.java2
-rw-r--r--src/test/java/DNPM/services/therapieplan/DefaultTherapieplanServiceTest.java2
-rw-r--r--src/test/java/DNPM/services/therapieplan/TherapieplanServiceFactoryTest.java27
6 files changed, 0 insertions, 36 deletions
diff --git a/src/test/java/DNPM/services/consent/MrConsentManagerServiceTest.java b/src/test/java/DNPM/services/consent/MrConsentManagerServiceTest.java
index 2c8448e..bfc32f5 100644
--- a/src/test/java/DNPM/services/consent/MrConsentManagerServiceTest.java
+++ b/src/test/java/DNPM/services/consent/MrConsentManagerServiceTest.java
@@ -14,8 +14,6 @@ import org.mockito.Mock;
import org.mockito.junit.jupiter.MockitoExtension;
import static org.assertj.core.api.Assertions.assertThat;
-import static org.mockito.ArgumentMatchers.any;
-import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.Mockito.*;
@ExtendWith(MockitoExtension.class)
diff --git a/src/test/java/DNPM/services/consent/UkwConsentManagerServiceTest.java b/src/test/java/DNPM/services/consent/UkwConsentManagerServiceTest.java
index fdcd6e3..3d1ef1d 100644
--- a/src/test/java/DNPM/services/consent/UkwConsentManagerServiceTest.java
+++ b/src/test/java/DNPM/services/consent/UkwConsentManagerServiceTest.java
@@ -14,7 +14,6 @@ import java.sql.Date;
import java.time.Instant;
import static org.assertj.core.api.Assertions.assertThat;
-import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
@ExtendWith(MockitoExtension.class)
diff --git a/src/test/java/DNPM/services/strahlentherapie/DefaultStrahlentherapieServiceTest.java b/src/test/java/DNPM/services/strahlentherapie/DefaultStrahlentherapieServiceTest.java
index 652aa16..a2bd1f7 100644
--- a/src/test/java/DNPM/services/strahlentherapie/DefaultStrahlentherapieServiceTest.java
+++ b/src/test/java/DNPM/services/strahlentherapie/DefaultStrahlentherapieServiceTest.java
@@ -17,8 +17,6 @@ import java.util.List;
import java.util.Optional;
import static org.assertj.core.api.Assertions.assertThat;
-import static org.mockito.ArgumentMatchers.anyInt;
-import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.Mockito.*;
@ExtendWith(MockitoExtension.class)
diff --git a/src/test/java/DNPM/services/systemtherapie/DefaultSystemtherapieServiceTest.java b/src/test/java/DNPM/services/systemtherapie/DefaultSystemtherapieServiceTest.java
index 686a44a..7455a53 100644
--- a/src/test/java/DNPM/services/systemtherapie/DefaultSystemtherapieServiceTest.java
+++ b/src/test/java/DNPM/services/systemtherapie/DefaultSystemtherapieServiceTest.java
@@ -15,8 +15,6 @@ import java.time.Instant;
import java.util.*;
import static org.assertj.core.api.Assertions.assertThat;
-import static org.mockito.ArgumentMatchers.anyInt;
-import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.Mockito.*;
@ExtendWith(MockitoExtension.class)
diff --git a/src/test/java/DNPM/services/therapieplan/DefaultTherapieplanServiceTest.java b/src/test/java/DNPM/services/therapieplan/DefaultTherapieplanServiceTest.java
index 7d696d8..7c67458 100644
--- a/src/test/java/DNPM/services/therapieplan/DefaultTherapieplanServiceTest.java
+++ b/src/test/java/DNPM/services/therapieplan/DefaultTherapieplanServiceTest.java
@@ -17,8 +17,6 @@ import java.util.Date;
import java.util.List;
import static org.assertj.core.api.Assertions.assertThat;
-import static org.mockito.ArgumentMatchers.any;
-import static org.mockito.ArgumentMatchers.anyBoolean;
import static org.mockito.Mockito.*;
@ExtendWith(MockitoExtension.class)
diff --git a/src/test/java/DNPM/services/therapieplan/TherapieplanServiceFactoryTest.java b/src/test/java/DNPM/services/therapieplan/TherapieplanServiceFactoryTest.java
index 746d711..b91ba46 100644
--- a/src/test/java/DNPM/services/therapieplan/TherapieplanServiceFactoryTest.java
+++ b/src/test/java/DNPM/services/therapieplan/TherapieplanServiceFactoryTest.java
@@ -1,34 +1,7 @@
-/*
- * MIT License
- *
- * 2023 Comprehensive Cancer Center Mainfranken
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in all
- * copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
package DNPM.services.therapieplan;
import DNPM.services.FormService;
import DNPM.services.SettingsService;
-import DNPM.services.therapieplan.DefaultTherapieplanService;
-import DNPM.services.therapieplan.MultipleMtbTherapieplanService;
-import DNPM.services.therapieplan.TherapieplanServiceFactory;
import de.itc.onkostar.api.IOnkostarApi;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;