You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CustomUITest.java 781B

123456789101112131415161718192021222324252627
  1. package com.vaadin.tests.components.ui;
  2. import com.vaadin.annotations.Widgetset;
  3. import com.vaadin.server.VaadinRequest;
  4. import com.vaadin.tests.components.AbstractReindeerTestUI;
  5. import com.vaadin.tests.widgetset.TestingWidgetSet;
  6. import com.vaadin.tests.widgetset.client.CustomUIConnectorRpc;
  7. @Widgetset(TestingWidgetSet.NAME)
  8. public class CustomUITest extends AbstractReindeerTestUI {
  9. @Override
  10. protected void setup(VaadinRequest request) {
  11. getRpcProxy(CustomUIConnectorRpc.class).test();
  12. }
  13. @Override
  14. protected String getTestDescription() {
  15. return "It should be possible to change the implementation of the UIConnector class";
  16. }
  17. @Override
  18. protected Integer getTicketNumber() {
  19. return Integer.valueOf(10867);
  20. }
  21. }