|
1 | 1 | package io.jenkins.plugins.util; |
2 | 2 |
|
3 | | -import java.io.BufferedReader; |
4 | | -import java.io.ByteArrayInputStream; |
5 | | -import java.io.File; |
6 | | -import java.io.IOException; |
7 | | -import java.nio.charset.Charset; |
8 | | -import java.nio.charset.StandardCharsets; |
9 | | -import java.nio.file.Path; |
10 | | -import java.util.Arrays; |
11 | | -import java.util.Collections; |
12 | | -import java.util.Objects; |
13 | | -import java.util.function.Function; |
14 | | - |
15 | 3 | import org.junit.jupiter.api.Tag; |
16 | 4 | import org.jvnet.hudson.test.JenkinsRule; |
17 | 5 | import org.jvnet.hudson.test.JenkinsRule.JSONWebResponse; |
|
28 | 16 | import edu.hm.hafner.util.PathUtil; |
29 | 17 | import edu.hm.hafner.util.ResourceTest; |
30 | 18 |
|
| 19 | +import java.io.BufferedReader; |
| 20 | +import java.io.ByteArrayInputStream; |
| 21 | +import java.io.File; |
| 22 | +import java.io.IOException; |
| 23 | +import java.nio.charset.Charset; |
| 24 | +import java.nio.charset.StandardCharsets; |
| 25 | +import java.nio.file.Path; |
| 26 | +import java.util.Arrays; |
| 27 | +import java.util.Collections; |
| 28 | +import java.util.Objects; |
| 29 | +import java.util.function.Function; |
| 30 | + |
31 | 31 | import org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition; |
32 | 32 | import org.jenkinsci.plugins.workflow.flow.FlowDefinition; |
33 | 33 | import org.jenkinsci.plugins.workflow.job.WorkflowJob; |
|
62 | 62 | * @author Ullrich Hafner |
63 | 63 | */ |
64 | 64 | @Tag("IntegrationTest") |
65 | | -@SuppressWarnings({"ClassDataAbstractionCoupling", "ClassFanOutComplexity", "SameParameterValue", "PMD.SystemPrintln", "PMD.GodClass", "PMD.ExcessiveClassLength", "PMD.ExcessiveImports", "PMD.CouplingBetweenObjects", "PMD.CyclomaticComplexity", "unused"}) |
| 65 | +@SuppressWarnings({"ClassDataAbstractionCoupling", "ClassFanOutComplexity", "SameParameterValue", "PMD.SystemPrintln", "PMD.CouplingBetweenObjects", "PMD.CyclomaticComplexity", "unused"}) |
66 | 66 | public abstract class IntegrationTest extends ResourceTest { |
67 | 67 | private static final Charset UTF_8 = StandardCharsets.UTF_8; |
68 | 68 |
|
|
0 commit comments