Skip to content
Snippets Groups Projects
Commit 00f7edd4 authored by Jan Zickermann's avatar Jan Zickermann
Browse files

OZG-5413 xta: Use static import

parent 046a9bc4
No related branches found
No related tags found
No related merge requests found
package de.ozgcloud.eingang.xta; package de.ozgcloud.eingang.xta;
import org.junit.jupiter.api.Assertions; import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest; import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ActiveProfiles; import org.springframework.test.context.ActiveProfiles;
...@@ -14,7 +15,7 @@ class XtaApplicationTest { ...@@ -14,7 +15,7 @@ class XtaApplicationTest {
@Test @Test
void startup() { void startup() {
// should start without exception; // should start without exception;
Assertions.assertTrue(true); assertTrue(true);
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment