File tree Expand file tree Collapse file tree 4 files changed +8
-10
lines changed
src/test/java/de/medizininformatikinitiative/torch Expand file tree Collapse file tree 4 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 343
343
<artifactId >maven-failsafe-plugin</artifactId >
344
344
<configuration >
345
345
<includes >
346
- <include >**/*ExecutionIT .java</include >
346
+ <include >**/*BlackBoxIT .java</include >
347
347
</includes >
348
348
<!-- Override the global excludes with an empty set -->
349
349
<excludes combine.self=" override" >
389
389
<artifactId >maven-failsafe-plugin</artifactId >
390
390
<configuration >
391
391
<excludes >
392
- <exclude >**/*ExecutionIT .java</exclude >
392
+ <exclude >**/*BlackBoxIT .java</exclude >
393
393
</excludes >
394
394
</configuration >
395
395
</plugin >
Original file line number Diff line number Diff line change 24
24
* => mvn clean package -DskipTests && docker build -t torch:latest .
25
25
*/
26
26
@ Testcontainers
27
- public class CdsExecutionIT {
27
+ public class CdsBlackBoxIT {
28
28
29
- private static final Logger logger = LoggerFactory .getLogger (CdsExecutionIT .class );
29
+ private static final Logger logger = LoggerFactory .getLogger (CdsBlackBoxIT .class );
30
30
31
31
private static BlackBoxIntegrationTestEnv environment ;
32
32
private static TorchClient torchClient ;
@@ -55,7 +55,6 @@ static void tearDown() {
55
55
public void testExamples () throws IOException {
56
56
var statusUrl = torchClient .executeExtractData (TestUtils .loadCrtdl ("CRTDL_test_it-kds-crtdl.json" )).block ();
57
57
assertThat (statusUrl ).isNotNull ();
58
-
59
58
var statusResponse = torchClient .pollStatus (statusUrl ).block ();
60
59
assertThat (statusResponse ).isNotNull ();
61
60
Original file line number Diff line number Diff line change 4
4
import org .junit .jupiter .api .AfterAll ;
5
5
import org .junit .jupiter .api .BeforeAll ;
6
6
import org .junit .jupiter .api .Test ;
7
- import org .junit .jupiter .api .Disabled ;
8
7
import org .slf4j .Logger ;
9
8
import org .slf4j .LoggerFactory ;
10
9
import org .testcontainers .junit .jupiter .Testcontainers ;
18
17
* => mvn clean package -DskipTests && docker build -t torch:latest . && mvn -P blackbox-integration-tests -B verify
19
18
*/
20
19
@ Testcontainers
21
- public class CdsPerformanceExecutionIT {
20
+ public class CdsPerformanceBlackBoxIT {
22
21
23
- private static final Logger logger = LoggerFactory .getLogger (CdsPerformanceExecutionIT .class );
22
+ private static final Logger logger = LoggerFactory .getLogger (CdsPerformanceBlackBoxIT .class );
24
23
25
24
private static PerformanceIntegrationTestEnv environment ;
26
25
private static TorchClient torchClient ;
Original file line number Diff line number Diff line change 26
26
* => mvn clean package -DskipTests && docker build -t torch:latest .
27
27
*/
28
28
@ Testcontainers
29
- class SpecificExecutionIT {
29
+ class SpecificBlackBoxIT {
30
30
31
- private static final Logger logger = LoggerFactory .getLogger (SpecificExecutionIT .class );
31
+ private static final Logger logger = LoggerFactory .getLogger (SpecificBlackBoxIT .class );
32
32
33
33
private static BlackBoxIntegrationTestEnv environment ;
34
34
private static TorchClient torchClient ;
You can’t perform that action at this time.
0 commit comments