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