活动和视图的 GWT 单元测试

发布于 2024-10-16 23:23:48 字数 109 浏览 1 评论 0原文

有人有关于如何编写 JRE junit 测试(扩展 TestCase 而不是 GWTTestCase)来测试 GWT 2.1 中的活动和视图的教程链接吗?

最好的问候

皮克

Does anybody have a link for a tutorial on how to write JRE junit tests (extending TestCase and not GWTTestCase) that tests Activity and Views in GWT 2.1?

Best regards

Pich

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

勿挽旧人 2024-10-23 23:23:48

视图只能使用 GWTTestCase 进行单元测试,因为它们调用(显式或隐式)GWT.create()

要测试活动,请使用模拟视图以避免使用 GWT.create()

Views can only be unit tested using GWTTestCase because they call (either explicitly or implicitly) GWT.create().

To test Activities use mock Views to avoid use of GWT.create().

多情癖 2024-10-23 23:23:48

我已经设法使用 PowerMock 测试视图,其中当然包含对调用 GWT.create() 的对象的引用。

对于活动来说,使用 Mockito 来模拟视图很容易。

I have managed to test views, which of course contains reference to the objects that calls GWT.create(), using PowerMock.

For Activities it is easy todo using Mockito for instance to mock the View.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文