mirror of
https://gitee.com/dcren/initializr.git
synced 2025-09-21 02:58:08 +08:00
19 lines
491 B
Plaintext
19 lines
491 B
Plaintext
![]() |
package com.example;
|
||
|
|
||
|
import org.junit.Test;
|
||
|
import org.junit.runner.RunWith;
|
||
|
import org.springframework.boot.test.SpringApplicationConfiguration;
|
||
|
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
||
|
import org.springframework.test.context.web.WebAppConfiguration;
|
||
|
|
||
|
@RunWith(SpringJUnit4ClassRunner.class)
|
||
|
@SpringApplicationConfiguration(classes = DemoApplication.class)
|
||
|
@WebAppConfiguration
|
||
|
public class DemoApplicationTests {
|
||
|
|
||
|
@Test
|
||
|
public void contextLoads() {
|
||
|
}
|
||
|
|
||
|
}
|