鉴于这个非常简单的 Wicket 组件:
public class ProductImage extends WebComponent {
public ProductImage(String id, Product p) {
super(id, new Model(p));
add(new AttributeModifier("src", true, new Model(p.getImage())));
}
}
如何使用 WicketTester 对其进行单元测试?我需要一个页面吗?