Author: jjankovi
Date: 2012-04-17 09:44:25 -0400 (Tue, 17 Apr 2012)
New Revision: 40243
Added:
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/rest/validation/ApplicationPathParameterTest.java
Log:
template of new test added
Added:
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/rest/validation/ApplicationPathParameterTest.java
===================================================================
---
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/rest/validation/ApplicationPathParameterTest.java
(rev 0)
+++
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/rest/validation/ApplicationPathParameterTest.java 2012-04-17
13:44:25 UTC (rev 40243)
@@ -0,0 +1,46 @@
+/*******************************************************************************
+ * Copyright (c) 2010-2012 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at
http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+
+package org.jboss.tools.ws.ui.bot.test.rest.validation;
+
+import org.jboss.tools.ws.ui.bot.test.rest.RESTfulTestBase;
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+
+public class ApplicationPathParameterTest extends RESTfulTestBase {
+
+ @Override
+ public String getWsProjectName() {
+ return "restApplication1";
+ }
+
+ @Before
+ public void setup() {
+
+ }
+
+ @After
+ public void cleanup() {
+ projectExplorer.deleteAllProjects();
+ }
+
+ @Test
+ public void testMultipleAppClasses() {
+
+ }
+
+ @Test
+ public void testWebXmlApplicationOption() {
+
+ }
+
+}