您可以使用create test configuration( ApplicationTest )带测试 .properties 或者 .yml 在测试包中,然后在测试中使用它
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = ApplicationTest.class)
public class Test {
@Test
public void test() throws Exception {
//some code
}
}
3条答案
按热度按时间2j4z5cfb1#
您可以使用create test configuration(
ApplicationTest
)带测试.properties
或者.yml
在测试包中,然后在测试中使用它lyfkaqu12#
您可以在参考资料下为测试包提供一个单独的application.properties文件,并且可以定义一个键值对,即:
classpath=classpath:my-example-resource.yml
并在代码中使用如下dtcbnfnu3#
如果运行@springboottest,可以使用以下注解:
它们将覆盖默认值。