在方法级别上@TestPropertySource注释备选方案
2022-09-02 01:57:36
@TestPropertySource(locations="classpath:test.properties")
public class Aclass {}
是否有替代方法在方法中使用测试实例的属性。
@Test
public void aMethod(){}
@TestPropertySource(locations="classpath:test.properties")
public class Aclass {}
是否有替代方法在方法中使用测试实例的属性。
@Test
public void aMethod(){}