gpt4 book ai didi

java - 使用 Maven 运行 GWTTestCase

转载 作者:行者123 更新时间:2023-11-29 03:14:00 24 4
gpt4 key购买 nike

在运行 $mvn clean install 时,我无法使用我的 GWT 库项目运行 GWT 测试,它会抛出此错误:

[ERROR] Hint: Check that your module inherits 'com.google.gwt.core.Core' either directly or indirectly (most often by inheriting module 'com.google.gwt.user.User')

但是应用程序在 App.gwt.xml 文件中有:

<?xml version="1.0" encoding="UTF-8"?>
<module>
<inherits name="com.google.gwt.core.Core" />
<inherits name='com.google.gwt.user.User'/>
<inherits name="com.google.gwt.i18n.I18N"/>
<inherits name="org.restlet.Restlet" />
<!-- Specify the paths for translatable code -->
<source path='client'/>
<source path='shared'/>
</module>

测试代码非常简单:

public class AppTest extends GWTTestCase {
@Before
public void prepareTests(){

}
@After
public void afterTests() {

}
@Override
public String getModuleName() {
return "com.mycompany.App";
}
@Test
public void test(){
Assert.assertTrue(true);
}
}

阻止测试运行的问题可能是什么?

最佳答案

1.- 不要使用 Junit-4,而是使用 Junit-3,删除 @Test 并使用 test 前缀命名您的测试

2.- 覆盖 getModuleName 返回你的 gwt 模块

3.- 使用gwtSetupgwtTearDown 代替@Before@After

  public class MyGwtTest extends GWTTestCase {

@Override
public String getModuleName() {
return "com.example.MyApp";
}
@Override
protected void gwtSetUp() throws Exception {
}
@Override
protected void gwtTearDown() throws Exception {
}

public void testSomething() {
// test something
}
}

4.- 适当配置 gwt-maven,以便您可以使用 mvn gwt:test 运行测试

5.- 或者用这个 surefire 配置来配置你的 maven 项目,你可以使用正常的方式 mvn test

<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.8.1</version>
<configuration>
<additionalClasspathElements>
<additionalClasspathElement>${project.build.sourceDirectory}</additionalClasspathElement>
<additionalClasspathElement>${project.build.testSourceDirectory}</additionalClasspathElement>
</additionalClasspathElements>
<useManifestOnlyJar>false</useManifestOnlyJar>
<forkMode>always</forkMode>
</configuration>
</plugin>

关于java - 使用 Maven 运行 GWTTestCase,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27729059/

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