[jbosstools-commits] JBoss Tools SVN: r39759 - trunk/cdi/tests/org.jboss.tools.cdi.seam3.bot.test/src/org/jboss/tools/cdi/seam3/bot/test/tests.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Thu Mar 22 07:18:10 EDT 2012


Author: jjankovi
Date: 2012-03-22 07:18:09 -0400 (Thu, 22 Mar 2012)
New Revision: 39759

Added:
   trunk/cdi/tests/org.jboss.tools.cdi.seam3.bot.test/src/org/jboss/tools/cdi/seam3/bot/test/tests/FullyQualifiedTest.java
Log:
Template of new seam3 bot test added

Added: trunk/cdi/tests/org.jboss.tools.cdi.seam3.bot.test/src/org/jboss/tools/cdi/seam3/bot/test/tests/FullyQualifiedTest.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.seam3.bot.test/src/org/jboss/tools/cdi/seam3/bot/test/tests/FullyQualifiedTest.java	                        (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.seam3.bot.test/src/org/jboss/tools/cdi/seam3/bot/test/tests/FullyQualifiedTest.java	2012-03-22 11:18:09 UTC (rev 39759)
@@ -0,0 +1,81 @@
+/*******************************************************************************
+ * 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.cdi.seam3.bot.test.tests;
+
+import org.jboss.tools.cdi.seam3.bot.test.base.SolderTestBase;
+import org.junit.Test;
+
+
+public class FullyQualifiedTest extends SolderTestBase {
+
+	@Override
+	public String getProjectName() {
+		return "fullyQualified";
+	}
+	
+	@Override
+	public void waitForJobs() {
+		projectExplorer.deleteAllProjects();		
+	} 
+	
+	@Override
+	public void prepareWorkspace() {
+		
+	}
+	
+	// should be error
+	@Test
+	public void testNonNamedBean() {
+		
+	}
+	// all beans in that package are fully qualified
+	@Test
+	public void testQualifiedPackage() {
+		
+	}
+	// should be ok
+	@Test
+	public void testDifferentExistedPackage() {
+		
+	}
+	// should be error
+	@Test
+	public void testDifferentNonExistedPackage() {
+		
+	}
+	// should be ok
+	@Test
+	public void testDifferentExistedClass() {
+		
+	}
+	// should be error
+	@Test
+	public void testDifferentNonExistedClass() {
+		
+	}
+	// should be ok
+	@Test
+	public void testNamedBean() {
+		
+	}
+	// should be ok	
+	@Test
+	public void testProducerMethod() {
+		
+	}
+	// should be ok	
+	@Test
+	public void testProducerField() {
+		
+	}
+	
+}



More information about the jbosstools-commits mailing list