Re: Several test suites in a run

2009-08-02 Thread Marcelo de Sena Lacerda
There is no need to define a different getModuleName() The same module name applies to the whole project and one can instantiate and test any classes from the project. So a test suite will do just fine. On Sun, Aug 2, 2009 at 7:57 AM, Ben2008 wrote: > > So what was the answer? > > Just define dif

Re: Several test suites in a run

2009-08-02 Thread Ben2008
So what was the answer? Just define different public String getModuleName() ?? On Aug 2, 1:02 am, Marcelo Sena wrote: > Oh god I can't believe I'm that dumb. > The answer was right in front of me the whole time. > Sorry for asking. > > On Aug 1, 4:12 pm, Marcelo Sena wrote: > > > > > Hi, > >

Re: Several test suites in a run

2009-08-01 Thread Marcelo Sena
Oh god I can't believe I'm that dumb. The answer was right in front of me the whole time. Sorry for asking. On Aug 1, 4:12 pm, Marcelo Sena wrote: > Hi, > I wished to run several test cases with different modules like this: > > public class StockWatcherTest extends GWTTestCase { >   public Strin

Several test suites in a run

2009-08-01 Thread Marcelo Sena
Hi, I wished to run several test cases with different modules like this: public class StockWatcherTest extends GWTTestCase { public String getModuleName() { return "com.google.gwt.sample.stockwatcher.StockWatcher"; } public void testSimple() { assertTrue(true); } } public class S