return "com.google.gwt.uibinder.test.UiBinderWithGss";
}
public void testGssIntegration() {
WidgetUsingGss widgetUsingGss = new WidgetUsingGss();
GssStyle style = widgetUsingGss.style;
RootPanel.get().add(widgetUsingGss);
assertEquals(style.main(), widgetUsingGss.getStyleName());
String expectedCss = "." + style.main() + "{background-color:black;color:white;width:200px;" +
"height:300px}";
assertEquals(expectedCss, widgetUsingGss.style.getText());
}