Error running 'DemoApplicationTests.contextLoads': Unknown error
你可以试试,看看测试类的包层次,是否跟启动类的一样。还有测试类上需要有注解
@RunWith(SpringRunner.class) @SpringBootTest
方法上需要由注解@Test
如上图
测试类在test包里,要和启动器放在同一个层次,注解不要少;