Re: EclEmma + GwtTestCase + GwtGenerator exception

2010-08-17 Thread Qi Zhang
I have resolved the problem after I debugged into GWT code. I am using GXT to build my Web Interface, but that GXT libraries was built with an old version of GWT, so some method signature could not be matched by GWT CompileClassLoader. After I upgraded my GXT libraries, the problem disappeared. -

Re: EclEmma + GwtTestCase + GwtGenerator exception

2010-08-17 Thread Gal Dolber
Finally someone :) 2010/8/16 Island > I am facing the same problem when I try to collect the code coverage > data, and here is the stack trace: > > 21:10:59.578 [ERROR] [splat] Failed to create an instance of > 'com.splat.client.SplatService' via deferred binding > com.google.gwt.dev.jjs.Interna

Re: EclEmma + GwtTestCase + GwtGenerator exception

2010-08-17 Thread Island
I am facing the same problem when I try to collect the code coverage data, and here is the stack trace: 21:10:59.578 [ERROR] [splat] Failed to create an instance of 'com.splat.client.SplatService' via deferred binding com.google.gwt.dev.jjs.InternalCompilerException: Unexpected error during visit.

Re: EclEmma + GwtTestCase + GwtGenerator exception

2010-07-23 Thread Gal Dolber
The exception happens in the Generator... generate(TreeLogger logger ..) throw UnableToCompleteException { throw new UnableToCompleteException(); } 2010/7/23 mP > Wheres the stacktrace ? wheres the problem description ? A little help > might encourage someone to respond or fix the problem. > >

Re: EclEmma + GwtTestCase + GwtGenerator exception

2010-07-23 Thread mP
Wheres the stacktrace ? wheres the problem description ? A little help might encourage someone to respond or fix the problem. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegro

Re: EclEmma + GwtTestCase + GwtGenerator exception

2010-07-23 Thread Gal Dolber
? 2010/7/22 Gal Dolber > Forgot the example: > > Under a GWTTestCase.. > > public void testFailureGenerator() { > try { > GWT.create(BadInterface.class); > } catch (RuntimeException e) { > return; > } > fail(); > } > > 2010/7/22 Gal Dolber > > Hi, I am working on a gwtTestCase that c

Re: EclEmma + GwtTestCase + GwtGenerator exception

2010-07-22 Thread Gal Dolber
Forgot the example: Under a GWTTestCase.. public void testFailureGenerator() { try { GWT.create(BadInterface.class); } catch (RuntimeException e) { return; } fail(); } 2010/7/22 Gal Dolber > Hi, I am working on a gwtTestCase that call a gwtGenerator and do > something, no matter wha

EclEmma + GwtTestCase + GwtGenerator exception

2010-07-22 Thread Gal Dolber
Hi, I am working on a gwtTestCase that call a gwtGenerator and do something, no matter what. I downloaded and patched eclEmma to work with gwt and it works fine. The problem I have is when I try to test a gwtGenerator failure, the test goes ok, it captures the exception ok, but eclEmma is not marki