@TestPropertySource(locations="classpath:test.properties")
public class Aclass {}
是否有替代方法在方法中使用测试实例的属性。
@Test
public void aMethod(){}
答案 0 :(得分:1)
例如使用元数据注释
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD) //triggering used in method.
@TestPropertySource(locations="classpath:test.properties")
@Test
public @interface testbase{}
并使用
@testbase
public void aMethod(){}
答案 1 :(得分:0)
仍然不可能,但是如果您希望遵循此功能,可以使用open issue。