この本当に単純な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を使用してユニットテストする方法は?ページが必要ですか?