gpt4 book ai didi

gwt - 使用 Maven 时,我应该如何构建我的 GWT 集成测试?

转载 作者:行者123 更新时间:2023-12-01 06:46:30 26 4
gpt4 key购买 nike

我正在使用 Maven 构建 GWT 应用程序。我们在 Maven 中使用带有多个子模块的父模块。我们决定为集成测试制作一个单独的模块,因为在同一个模块中将集成测试与单元测试分开似乎很麻烦。但是,当我们尝试从单独的 maven 模块运行 GwtTestCase 测试时,它被证明是有问题的;具体来说,我们找不到一种简单的方法来让测试在 Eclipse 或 Maven 中查看我们的应用程序的入口点。

使用 Maven 时是否有一种构建 GWT 集成测试的好方法?将它们留在 GUI 模块中并尝试使用 maven 配置文件将集成测试与单元测试分开是最佳选择吗?

最佳答案

我们不会将集成测试提取到单独的模块中

在我们的项目中,我们这样做:

<profiles>
<profile>
<id>nointegration</id>
<properties>
<integration.tests.includes>none</integration.tests.includes>
</properties>
</profile>
...
</profiles>

当我们不想运行集成测试时:
mvn clean install -Pnointegration

所以只运行了通常的非集成测试

关于gwt - 使用 Maven 时,我应该如何构建我的 GWT 集成测试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4651517/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com