tabular-data-toolbox-widget/src/test/java/org/gcube/portlets/user/td/toolboxwidget/client/GwtTestToolBox.java

61 lines
1.6 KiB
Java

package org.gcube.portlets.user.td.toolboxwidget.client;
import com.google.gwt.junit.client.GWTTestCase;
/**
* GWT JUnit <b>integration</b> tests must extend GWTTestCase.
* Using <code>"GwtTest*"</code> naming pattern exclude them from running with
* surefire during the test phase.
*
* If you run the tests using the Maven command line, you will have to
* navigate with your browser to a specific url given by Maven.
* See http://mojo.codehaus.org/gwt-maven-plugin/user-guide/testing.html
* for details.
*/
public class GwtTestToolBox extends GWTTestCase {
/**
* Must refer to a valid module that sources this class.
*/
public String getModuleName() {
return "org.gcube.portlets.user.td.toolboxwidget.ToolBoxJUnit";
}
/**
* This test will send a request to the server
*/
public void testToolBox() {
// Create the service that we will test.
/*TDGWTServiceAsync tdGWTService = TDGWTServiceAsync.INSTANCE;
ServiceDefTarget target = (ServiceDefTarget) tdGWTService;
System.out.println(GWT.getModuleBaseURL() + "TDGWTService");
target.setServiceEntryPoint(GWT.getModuleBaseURL() + "TDGWTService");
// Send a request to the server.
/*tdGWTService.getTabResourceInformation(new AsyncCallback<TabResource>(){
@Override
public void onFailure(Throwable caught) {
fail("Request failure: " + caught.getMessage());
}
@Override
public void onSuccess(TabResource result) {
assertTrue(result!=null);
System.out.println(result);
finishTest();
}
});*/
delayTestFinish(1000);
finishTest();
}
}