我是 GWT / Java 的新手,需要一些关于如何解决这个(似乎应该是)简单问题的想法。
我有一个 GWT 对象,我正在尝试测试一个私有方法:
public class BarChart extends FlowPanel {
public BarChart() {
super();
privateMethod();
}
privateMethod() {
//want to test this
}
}
我尝试过 JUnit,但它需要是 GWTTestCase,因为该对象需要 GWT.create(),并且我尝试过反射,但 GWTTestCase 不支持它。