运行$ mvn clean install时,我无法使用我的GWT Library项目运行GWT Test会抛出此错误:
[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);
}
}
阻止测试运行的问题是什么?
答案 0 :(得分:4)
1.-不要使用Junit-4但使用Junit-3,删除@Test
并使用test
前缀命名您的测试
2.-覆盖getModuleName返回你的gwt模块
3.-使用gwtSetup
和gwtTearDown
代替@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>