我有简单的测试用例:
@Test
public void test() throws Exception{
TableElement table = mock(TableElement.class);
table.insertRow(0);
}
其中 TableElement 是 GWT 类,其方法insertRow
定义为:
public final native TableRowElement insertRow(int index);
当我启动测试时,我得到:
java.lang.UnsatisfiedLinkError: com.google.gwt.dom.client.TableElement.insertRow(I)Lcom/google/gwt/dom/client/TableRowElement;
at com.google.gwt.dom.client.TableElement.insertRow(Native Method)
我认为这与本机的 insertRow 方法有关。有什么方法或解决方法可以用 Mockito 模拟这些方法吗?