Updated to support Git and Jenkins

This commit is contained in:
Giancarlo Panichi 2019-10-15 11:32:43 +02:00
parent e7fa4ab98a
commit 7abbb54444
2 changed files with 33 additions and 38 deletions

View File

@ -24,18 +24,15 @@ public class GwtTestWidgetCommonEvent extends GWTTestCase {
return "org.gcube.portlets.user.td.widgetcommonevent.WidgetCommonEventJUnit";
}
/**
* Test Events fire
*/
@Test
public void testEvents() {
SimpleEventBus eventBus=new SimpleEventBus();
eventBus.addHandler(RibbonEvent.TYPE,
new RibbonEvent.RibbonEventHandler() {
SimpleEventBus eventBus = new SimpleEventBus();
eventBus.addHandler(RibbonEvent.TYPE, new RibbonEvent.RibbonEventHandler() {
public void onRibbon(RibbonEvent event) {
doRibbonCommand(event);
@ -47,7 +44,6 @@ public class GwtTestWidgetCommonEvent extends GWTTestCase {
eventBus.fireEvent(new RibbonEvent(RibbonType.IMPORT_CSV));
eventBus.fireEvent(new RibbonEvent(RibbonType.IMPORT_JSON));
}
private void doRibbonCommand(RibbonEvent event) {
@ -67,8 +63,7 @@ public class GwtTestWidgetCommonEvent extends GWTTestCase {
break;
}
} catch (Exception e) {
System.out.println("doRibbonCommand Error : " + e.getLocalizedMessage()
+ " \n " + e.getMessage());
System.out.println("doRibbonCommand Error : " + e.getLocalizedMessage() + " \n " + e.getMessage());
}
}