2013-11-01 14:39:56 +00:00
|
|
|
package ${packageName};
|
|
|
|
|
|
|
|
|
|
import org.junit.Test;
|
|
|
|
|
import org.junit.runner.RunWith;
|
2014-03-18 10:21:31 +00:00
|
|
|
${testImports}import org.springframework.boot.test.SpringApplicationConfiguration;
|
2013-11-01 14:39:56 +00:00
|
|
|
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
|
|
|
|
|
|
|
|
@RunWith(SpringJUnit4ClassRunner.class)
|
2014-03-18 10:21:31 +00:00
|
|
|
@SpringApplicationConfiguration(classes = Application.class)
|
|
|
|
|
${testAnnotations}public class ApplicationTests {
|
2013-11-01 14:39:56 +00:00
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
public void contextLoads() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|