19 lines
467 B
Java
19 lines
467 B
Java
package demo;
|
|
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
import org.springframework.test.context.ActiveProfiles;
|
|
import org.springframework.test.context.junit4.SpringRunner;
|
|
|
|
@RunWith(SpringRunner.class)
|
|
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.MOCK)
|
|
@ActiveProfiles("test")
|
|
public class AccountStreamModuleApplicationTests {
|
|
|
|
@Test
|
|
public void contextLoads() {
|
|
}
|
|
|
|
}
|