如果我有一门“@PostConstruct”方法的班子,那么我如何能够测试其建筑设计师,从而测试其“PostConstruct”方法。 我只能使用新的Name(第10段,第10段),因为当时它不使用春天——“PostConstruct”方法没有发射。
我在这里没有明显的东西?
public class Connection {
private String x1;
private String x2;
public Connection(String x1, String x2) {
this.x1 = x1;
this.x2 = x2;
}
@PostConstruct
public void init() {
x1 = "arf arf arf";
}
}
@Test
public void test() {
Connection c = new Connection("dog", "ruff");
assertEquals("arf arf arf", c.getX1());
}
我有类似(虽然稍加复杂)的情况,但“创伤”方法没有被击中。