下面是从application.properties获取pathtofile的类。
@Component public class CSVReader { @Value("${name.basics}") private String pathToFile; (other code) }
问题是:如何用application.properties代替测试?
of1yzvn41#
您可以使用spring boot测试注解:
@RunWith(SpringRunner.class) @SpringBootTest(properties = {"name.basics=whatever"}) public class YourTestClass { @Autowired CSVReader cvsReader; @Test public void yourTest() { //...
第二种选择是 application-test.properties 包含替换项 src/test/resources 项目的文件夹
application-test.properties
src/test/resources
1条答案
按热度按时间of1yzvn41#
您可以使用spring boot测试注解:
第二种选择是
application-test.properties
包含替换项src/test/resources
项目的文件夹