微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

GwtMockito GWT 应用测试工具

程序名称:GwtMockito

授权协议: Apache

操作系统: 跨平台

开发语言: Java

GwtMockito 介绍

GwtMockito 是 GWT 应用测试工具。

使用 GWTTestCase 测试 GWT 应用会比纯 Java
测试慢,而且不能使用基于反射的工具,比如模拟测试框架。如果尝试使用常规测试示例,那么会遇到这个错误

ERROR: GWT.create() is only usable in client code!  It cannot be called,
for example, from server code. If you are running a unit test, check that 
your test case extends GWTTestCase and that GWT.create() is not called
from within an initializer or constructor.

GwtMockito 就很好的解决了这个问题,允许从 JUnit 测试中调用 GWT.create。返回
Mockito mocks。

使用:

public class MyWidget extends Composite {
  interface MyUiBinder extends UiBinder<Widget, MyWidget> {}
  private final MyUiBinder uiBinder = GWT.create(MyUiBinder.class);
  @UiField Label numberLabel;
  private final NumberFormatter formatter;
  public MyWidget(NumberFormatter formatter) {
    this.formatter = formatter;
    initWidget(uiBinder.createAndBindUi(this);
  }
  void setNumber(int number) {
    numberLabel.setText(formatter.format(number));
  }
}

GwtMockito 官网

http://google.github.io/gwtmockito/

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐