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.

NoMainWindow.java 464B

12345678910111213141516171819202122
  1. package com.vaadin.tests.applicationservlet;
  2. import com.vaadin.tests.components.AbstractTestCase;
  3. public class NoMainWindow extends AbstractTestCase {
  4. @Override
  5. protected String getDescription() {
  6. return "This should produce an stack trace with \"No window found. Did you remember to setMainWindow()?\"";
  7. }
  8. @Override
  9. protected Integer getTicketNumber() {
  10. return 3349;
  11. }
  12. @Override
  13. public void init() {
  14. }
  15. }