Skip to content

Commit 1e77780

Browse files
Junit4 to Junit4 Integration Tests migration
* add the extension registration declaratively (using an annotation)
1 parent da8b59e commit 1e77780

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

integration-test/src/test/java/org/cloudfoundry/AbstractIntegrationTest.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ public void testEntry(TestInfo testInfo) {
6464

6565
@AfterEach
6666
public final void testExit() {
67-
this.logger.debug("<< {} >>", getTestName());
68-
}
67+
this.logger.debug("<< {} >>", getTestName());
68+
}
6969

7070
protected static Mono<byte[]> getBytes(String path) {
7171
try (InputStream in = new FileInputStream(new File("src/test/resources", path)); ByteArrayOutputStream out = new ByteArrayOutputStream()) {
@@ -83,11 +83,11 @@ protected static Mono<byte[]> getBytes(String path) {
8383
}
8484

8585
protected static <T> Consumer<Tuple2<T, T>> tupleEquality() {
86-
return consumer((expected, actual) -> assertThat(actual).isEqualTo(expected));
87-
}
86+
return consumer((expected, actual) -> assertThat(actual).isEqualTo(expected));
87+
}
8888

8989
private String getTestName() {
90-
return String.format("%s.%s", this.getClass().getSimpleName(), this.testName);
91-
}
90+
return String.format("%s.%s", this.getClass().getSimpleName(), this.testName);
91+
}
9292

9393
}

0 commit comments

Comments
 (0)