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 StockPriceTest extends GWTTestCase
{
public String getModuleName()
{
return "com.google.gwt.sample.stockwatcher.StockPrice";
}
public void testStockPriceStringDoubleDouble()
{
assertTrue(true);
}
}
Using Test suites won't work since getModuleName will return different
values. Do you guys know a way to address this?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---