Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GWT Junit - error='no compilation unit for that type was seen'

Tags:

junit

gwt

I'm trying to run a GWT unit test in a sample app. I ran

cmd /c /java/gwt-windows-1.6.4/webAppCreator.cmd -out gwttasks com.gwttasks.GwtTasks

Copied in junit-4.5.jar into a lib directory, and added that to the classpath.

Ran:

cmd /c /java/gwt-windows-1.6.4/junitCreator.cmd -junit lib/junit-4.5.jar -module com.gwttasks.GwtTasks -eclipse GwtTasks com.gwt
tasks.unit.GwtJunit

When I try to run any of the generated cmd file (such as GwtJunit-hosted.cmd) or any of the launch files, I get the following error. All the web pages I've seen say to add the test source to the classpath, but it's already there, so that's not the problem. Anyone else seen this?

com.google.gwt.junit.JUnitFatalLaunchException: The test class 'com.gwttasks.unit.GwtJunit' was not found in module 'com.gwttasks.GwtTasks'; no compilation unit for that type was seen
    at com.google.gwt.junit.JUnitShell.checkTestClassInCurrentModule(JUnitShell.java:390)
    at com.google.gwt.junit.JUnitShell.runTestImpl(JUnitShell.java:626)
    ...
like image 868
Don Branson Avatar asked Jun 28 '09 23:06

Don Branson


2 Answers

The answer could be found here : http://raibledesigns.com/rd/entry/testing_gwt_applications

like image 73
user267077 Avatar answered Nov 06 '22 06:11

user267077


In netbeans I added the src/java and test to the class path and debugging worked!!!!! THANKS

like image 4
Norm Wright Avatar answered Nov 06 '22 05:11

Norm Wright