Author: jjankovi
Date: 2012-01-30 11:32:36 -0500 (Mon, 30 Jan 2012)
New Revision: 38276
Added:
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/annotation/AnnotationPropertiesTest.java
Log:
Template of new ws bot test added
Added:
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/annotation/AnnotationPropertiesTest.java
===================================================================
---
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/annotation/AnnotationPropertiesTest.java
(rev 0)
+++
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/annotation/AnnotationPropertiesTest.java 2012-01-30
16:32:36 UTC (rev 38276)
@@ -0,0 +1,83 @@
+/*******************************************************************************
+ * Copyright (c) 2010-2011 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.annotation;
+
+import org.jboss.tools.ws.ui.bot.test.rest.RESTfulTestBase;
+import org.junit.Test;
+
+/**
+ *
+ * @author jjankovi
+ *
+ */
+public class AnnotationPropertiesTest extends RESTfulTestBase {
+
+
+ @Override
+ public String getWsProjectName() {
+ return "AnnotationViewTest";
+ }
+
+ @Override
+ public String getWsPackage() {
+ return "org.ws.annotation.properties.test";
+ }
+
+ @Override
+ public String getWsName() {
+ return "WSService";
+ }
+
+ /**
+ * 1 there are no incorrectly checked annotations
+ * 2 there are no incorrectly unchecked annotations
+ */
+ @Test
+ public void testAbsenceOfAnnotation() {
+
+ }
+
+ /**
+ * 1 there are correctly checked annotations
+ * 2 there are correctly unchecked annotations
+ */
+ @Test
+ public void testPresenceOfAnnotation() {
+
+ }
+
+ /**
+ * 1 check equality of param values
+ * 2 changing param values is mirrored to class
+ */
+ @Test
+ public void testAnnotationParamValues() {
+
+ }
+
+ /**
+ * 1 activating annotation through view is mirrored to class
+ */
+ @Test
+ public void testAnnotationActivating() {
+
+ }
+
+ /**
+ * 1 deactivating annotation through view is mirrored to class
+ */
+ @Test
+ public void testAnnotationDeactivating() {
+
+ }
+
+}