gwt 测试:无法在类路径上找到sample.gwt.xml

发布于 2024-10-09 08:59:36 字数 913 浏览 3 评论 0原文

我正在为我的应用程序运行 gwt 测试,这就像一场噩梦,问题接二连三,不知道出了什么问题。

首先,我创建了一个虚拟测试用例:

public class ListItemTest extends GWTTestCase {

  /**
   * Specifies a module to use when running this test case. The returned
   * module must include the source for this class.
   * 
   * @see com.google.gwt.junit.client.GWTTestCase#getModuleName()
   */
    @Override
    public String getModuleName() {
        return "com.dyihi.services.sample.Sample";
    }

    /**
     * Add as many tests as you like
     */
    public void testSimple() {
        assertTrue(true);
    }
}

当我运行“mvn test”时,这个简单的测试失败了。错误消息是:

initializationError0
java.lang.NoClassDefFoundError: com/google/gwt/dev/cfg/Condition

我用谷歌搜索了一下,发现我需要在我的pom中包含gwt-dev,我这样做了,再次运行测试,现在它抛出了错误:

[错误] 无法在类路径上找到“Sample.gwt.xml”;可能是拼写错误,或者您可能忘记包含源代码的类路径条目?

I'm running gwt test for my application, it's like a nightmare, got problem one after another, not sure what's going wrong.

First, I created a dummy test case:

public class ListItemTest extends GWTTestCase {

  /**
   * Specifies a module to use when running this test case. The returned
   * module must include the source for this class.
   * 
   * @see com.google.gwt.junit.client.GWTTestCase#getModuleName()
   */
    @Override
    public String getModuleName() {
        return "com.dyihi.services.sample.Sample";
    }

    /**
     * Add as many tests as you like
     */
    public void testSimple() {
        assertTrue(true);
    }
}

When I ran 'mvn test' this simple test failed. The error message is:

initializationError0
java.lang.NoClassDefFoundError: com/google/gwt/dev/cfg/Condition

I googled around and found out that I need to include gwt-dev in my pom, and I did that, ran the test again, now it threw error:

[ERROR] Unable to find 'Sample.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?

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

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

发布评论

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

评论(3

优雅的叶子 2024-10-16 08:59:36

我发现 Eclipse 的 Run Configuration Classpath 选项卡对我有用。

您可能已经有一个条目,例如
java - appnameis/src/main/

这似乎是一个毫无意义的黑客,但以下内容对我有用

按绿色“播放”按钮 > 运行配置 > Classpath 选项卡

选择一个用户条目,例如 java - appnameis/src/main/

选择Advanced 按钮

选择添加文件夹
深入了解 appnameis/src/main/java/app/name
OK

您现在拥有如下条目:

java - appnameis/src/main/

is - appnameis/src/main/java/app/name

其中您的 appnameis.gwt.xml 文件直接位于 is 文件夹

Run

I found Eclipse's Run Configuration Classpath tab worked for me.

You might already have an entry like
java - appnameis/src/main/

It seems a pointless hack but the following worked for me

Press the Green "Play" button > Run configurations > Classpath tab

Select one of the User Entries e.g. java - appnameis/src/main/

Select the Advanced button

Select Add Folders
drill down to appnameis/src/main/java/app/name
OK

You now have entries like:

java - appnameis/src/main/

is - appnameis/src/main/java/app/name

Where your appnameis.gwt.xml file is directly under the is folder

Run

北城半夏 2024-10-16 08:59:36

检查 Eclipse 中的 Run Configurations 下的内容,然后检查 Arguments 选项卡。
如果类被移动,Eclipse 将不会更新命令行参数。

Check under Run Configurations in Eclipse, and check the Arguments tab.
If the class is moved, Eclipse won't update the command line arguments.

别忘他 2024-10-16 08:59:36

如果您从启动文件运行测试,您可能需要将模块包含在启动类路径中,例如:

<listAttribute key="org.eclipse.jdt.launching.CLASSPATH">
    <listEntry value="<?xml version="1.0" encoding="UTF-8"?>
<runtimeClasspathEntry path="3" projectName="Sample" type="1"/>
"/>
</listAttribute>

If you're running the test from a launch file you might need to include your module in the launch classpath, for example:

<listAttribute key="org.eclipse.jdt.launching.CLASSPATH">
    <listEntry value="<?xml version="1.0" encoding="UTF-8"?>
<runtimeClasspathEntry path="3" projectName="Sample" type="1"/>
"/>
</listAttribute>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文