0
我正在使用GWT覆蓋類型,我不知道如何測試。我想以某種方式確保我的Overlay對象訪問器匹配序列化爲JSON的類中的字段名稱。測試GWT覆蓋類型
例如
//Class to be serialized to JSON
public class SoCool1 implements SoCool
{
private String myString;
public String getMyString()
{
return myString;
}
}
//Overlay class
public class SoCool2 extends JavaScriptObject implements SoCool
{
public final native String getMyString() /*-{
return this.myString;
}-*/;
}
如何測試該SoCool2本地方法的返回現場匹配SoCool1?