I have a small working app (runs in my appserver and gwt shell mode)
using gwt-1.4.60
I tried to write by first unit test but getting a
UnsatisfiedLinkError: no swt-win32-3232 in java.library.path when I
run under eclipse-3.3 (havent tried outside eclipse yet).
I tried all the standard stuff:
made sure swt-win32-3235.dll is in my classpath
Tried putting swt-win32-3235.dll in windows/system32
Tried putting it elsewhere with a -Djava.library.path=/gwt-
windows-1.4.60
I saw something similar in http://code.google.com/p/google-web-toolkit/issues/detail?id=822
so I even tried unzipping a fresh copy of gwt-1.3 to extract the dll
and that didnt help (but did break gwt shell since I guess it is an
older swt impl).
Interestingly, the error exists even with a trivial testcase (see
below).
Im pretty stuck as far as unit testing goes.
public class MyAppTest extends GWTTestCase {
@Override
public String getModuleName() {
return "com.drillinginfo.gwt.client.MyApp";
}
public void testFoo() throws Exception {
}
}