summaryrefslogtreecommitdiffstats
path: root/uitest/src
diff options
context:
space:
mode:
authorMika Murtojarvi <mika@vaadin.com>2014-12-03 11:00:30 +0200
committerMika Murtojarvi <mika@vaadin.com>2014-12-03 11:00:30 +0200
commitc82b0c8ed2c2c96ea5b331e6f4867a1df2c121d0 (patch)
treebc517cd03e320feee6527b7f29240e2208d13e23 /uitest/src
parentecb037d2d9ead3324b052ad69e73f22ed8672870 (diff)
downloadvaadin-framework-c82b0c8ed2c2c96ea5b331e6f4867a1df2c121d0.tar.gz
vaadin-framework-c82b0c8ed2c2c96ea5b331e6f4867a1df2c121d0.zip
Declarative: remove unnecessary files.
The files were used for manual testing. Automatic tests with new test files will be created soon. Change-Id: I14b823dbd3c446a0288129a511ba8f8ec920f13b
Diffstat (limited to 'uitest/src')
-rw-r--r--uitest/src/com/vaadin/tests/components/abstractcomponent/ParseComponentHierarchy.java51
1 files changed, 0 insertions, 51 deletions
diff --git a/uitest/src/com/vaadin/tests/components/abstractcomponent/ParseComponentHierarchy.java b/uitest/src/com/vaadin/tests/components/abstractcomponent/ParseComponentHierarchy.java
deleted file mode 100644
index c85086b042..0000000000
--- a/uitest/src/com/vaadin/tests/components/abstractcomponent/ParseComponentHierarchy.java
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright 2000-2014 Vaadin Ltd.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
-package com.vaadin.tests.components.abstractcomponent;
-
-import java.io.FileInputStream;
-import java.io.FileNotFoundException;
-
-import com.vaadin.server.VaadinRequest;
-import com.vaadin.tests.components.AbstractTestUI;
-import com.vaadin.ui.DesignSynchronizable;
-import com.vaadin.ui.declarative.LayoutHandler;
-
-/**
- *
- * @since
- * @author Vaadin Ltd
- */
-public class ParseComponentHierarchy extends AbstractTestUI {
-
- /*
- * (non-Javadoc)
- *
- * @see com.vaadin.tests.components.AbstractTestUI#setup(com.vaadin.server.
- * VaadinRequest)
- */
- @Override
- protected void setup(VaadinRequest request) {
- FileInputStream fis = null;
- try {
- fis = new FileInputStream(
- "C:\\Users\\mika\\Projects\\Vaadin\\vaadin\\server\\src\\com\\vaadin\\ui\\declarative\\testFile.html");
- } catch (FileNotFoundException e) {
- e.printStackTrace();
- }
- DesignSynchronizable root = LayoutHandler.parse(fis).getComponentRoot();
- addComponent(root);
- }
-}