Files
event-stream-processing-mic…/account-parent/account-worker/src/test/java/demo/AccountStreamModuleApplicationTests.java
Kenny Bastani 878e40a2e5 Fixing tests
2016-12-20 11:57:35 -08:00

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() {
}
}