From 6b8412033e680ce6e5c7827ac504adf132305726 Mon Sep 17 00:00:00 2001 From: Teemu Suo-Anttila Date: Fri, 15 Apr 2016 11:06:18 +0300 Subject: Build uitest war with maven Change-Id: I32625901ca27a282253df44c6e776cf9632bacda --- .../src/com/vaadin/tests/tickets/Ticket1900.java | 74 ---------------------- 1 file changed, 74 deletions(-) delete mode 100644 uitest/src/com/vaadin/tests/tickets/Ticket1900.java (limited to 'uitest/src/com/vaadin/tests/tickets/Ticket1900.java') diff --git a/uitest/src/com/vaadin/tests/tickets/Ticket1900.java b/uitest/src/com/vaadin/tests/tickets/Ticket1900.java deleted file mode 100644 index 35b7adc7b3..0000000000 --- a/uitest/src/com/vaadin/tests/tickets/Ticket1900.java +++ /dev/null @@ -1,74 +0,0 @@ -package com.vaadin.tests.tickets; - -import com.vaadin.data.Property; -import com.vaadin.data.Property.ValueChangeEvent; -import com.vaadin.data.Validator; -import com.vaadin.server.LegacyApplication; -import com.vaadin.ui.LegacyWindow; -import com.vaadin.ui.TextField; - -public class Ticket1900 extends LegacyApplication { - - TextField f[] = new TextField[5]; - LegacyWindow main = new LegacyWindow("#1900 test"); - - @Override - public void init() { - - setMainWindow(main); - - for (int i = 0; i < 5; i++) { - final int j = i; - f[i] = new TextField("Testcase " + i); - f[i].setImmediate(true); - f[i].setRequired(true); - main.addComponent(f[i]); - f[i].addListener(new Property.ValueChangeListener() { - @Override - public void valueChange(ValueChangeEvent event) { - main.showNotification("Validity test", "Testcase " + j - + " is " + (f[j].isValid() ? "valid" : "invalid")); - } - }); - f[i].addValidator(new ContainsValidator("1")); - f[i].addValidator(new ContainsValidator("2")); - - } - - f[0].setDescription("Field is empty, requiredError(null): *"); - - f[1].setDescription("Field is empty, requiredError(\"foo\"): * (popup shows the validation error)"); - f[1].setRequiredError("The field must not be empty"); - - f[2].setDescription("Field is non-empty, validators do not give validation error: *"); - f[2].setValue("valid 12"); - - f[3].setDescription("Field is non-empty, requiredError(null), validators " - + "give validation error: * ! (popup shows the validation error)"); - f[3].setValue("invalid"); - - f[4].setDescription("Field is non-empty, requiredError(\"foo\"), validators " - + "give validation error: * ! (popup shows the validation error)"); - f[4].setValue("invalid"); - f[4].setRequiredError("The field must not be empty"); - - } - - static class ContainsValidator implements Validator { - private final String c; - - public ContainsValidator(String c) { - this.c = c; - } - - @Override - public void validate(Object value) throws InvalidValueException { - if (value == null || !value.toString().contains(c)) { - throw new InvalidValueException("Value does not contain " + c); - } - - } - - } - -} -- cgit v1.2.3