16 lines
301 B
Java
16 lines
301 B
Java
package com.stktrk.auth;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
import org.springframework.context.annotation.Import;
|
|
|
|
@Import(TestcontainersConfiguration.class)
|
|
@SpringBootTest
|
|
class AppApplicationTests {
|
|
|
|
@Test
|
|
void contextLoads() {
|
|
}
|
|
|
|
}
|