[jbosstools-commits] JBoss Tools SVN: r42819 - in trunk/tests/tests/org.jboss.tools.dummy.ui.bot.test: META-INF and 1 other directories.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Tue Jul 31 11:26:58 EDT 2012


Author: jpeterka
Date: 2012-07-31 11:26:57 -0400 (Tue, 31 Jul 2012)
New Revision: 42819

Modified:
   trunk/tests/tests/org.jboss.tools.dummy.ui.bot.test/
   trunk/tests/tests/org.jboss.tools.dummy.ui.bot.test/META-INF/MANIFEST.MF
   trunk/tests/tests/org.jboss.tools.dummy.ui.bot.test/pom.xml
   trunk/tests/tests/org.jboss.tools.dummy.ui.bot.test/src/org/jboss/tools/dummy/ui/bot/test/DummyTest.java
Log:
dummy ui bot test pom.xml and manifest fixed


Property changes on: trunk/tests/tests/org.jboss.tools.dummy.ui.bot.test
___________________________________________________________________
Added: svn:ignore
   + target


Modified: trunk/tests/tests/org.jboss.tools.dummy.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/tests/tests/org.jboss.tools.dummy.ui.bot.test/META-INF/MANIFEST.MF	2012-07-31 15:23:45 UTC (rev 42818)
+++ trunk/tests/tests/org.jboss.tools.dummy.ui.bot.test/META-INF/MANIFEST.MF	2012-07-31 15:26:57 UTC (rev 42819)
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: Test
 Bundle-SymbolicName: org.jboss.tools.dummy.ui.bot.test
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 3.4.0.qualifier
 Bundle-Activator: org.jboss.tools.dummy.ui.bot.test.Activator
 Require-Bundle: org.eclipse.ui,
  org.eclipse.core.runtime,

Modified: trunk/tests/tests/org.jboss.tools.dummy.ui.bot.test/pom.xml
===================================================================
--- trunk/tests/tests/org.jboss.tools.dummy.ui.bot.test/pom.xml	2012-07-31 15:23:45 UTC (rev 42818)
+++ trunk/tests/tests/org.jboss.tools.dummy.ui.bot.test/pom.xml	2012-07-31 15:26:57 UTC (rev 42819)
@@ -11,8 +11,56 @@
 	<artifactId>org.jboss.tools.dummy.ui.bot.test</artifactId> 
 	
 	<packaging>eclipse-test-plugin</packaging>
-  
-    <properties>
-      <skipTests>true</skipTests>
-    </properties>
+     
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.eclipse.tycho</groupId>
+				<artifactId>target-platform-configuration</artifactId>
+				<version>0.14.1</version>
+				<configuration>
+					<resolver>p2</resolver>
+					<ignoreTychoRepositories>true</ignoreTychoRepositories>
+					<environments>
+						<environment>
+							<os>macosx</os>
+							<ws>cocoa</ws>
+							<arch>x86</arch>
+						</environment>
+						<environment>
+							<os>win32</os>
+							<ws>win32</ws>
+							<arch>x86</arch>
+						</environment>
+						<environment>
+							<os>win32</os>
+							<ws>win32</ws>
+							<arch>x86_64</arch>
+						</environment>
+						<environment>
+							<os>linux</os>
+							<ws>gtk</ws>
+							<arch>x86</arch>
+						</environment>
+						<environment>
+							<os>linux</os>
+							<ws>gtk</ws>
+							<arch>x86_64</arch>
+						</environment>
+					</environments>
+				</configuration>
+			</plugin>
+
+			<plugin>
+				<groupId>org.eclipse.tycho</groupId>
+				<artifactId>tycho-surefire-plugin</artifactId>
+				<configuration>
+					<useUIThread>false</useUIThread>
+					<testSuite>org.jboss.tools.dummy.ui.bot.test</testSuite>
+					<testClass>org.jboss.tools.dummy.ui.bot.test.DummySuite</testClass>
+					<skip>${swtbot.test.skip}</skip>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>    
 </project>
\ No newline at end of file

Modified: trunk/tests/tests/org.jboss.tools.dummy.ui.bot.test/src/org/jboss/tools/dummy/ui/bot/test/DummyTest.java
===================================================================
--- trunk/tests/tests/org.jboss.tools.dummy.ui.bot.test/src/org/jboss/tools/dummy/ui/bot/test/DummyTest.java	2012-07-31 15:23:45 UTC (rev 42818)
+++ trunk/tests/tests/org.jboss.tools.dummy.ui.bot.test/src/org/jboss/tools/dummy/ui/bot/test/DummyTest.java	2012-07-31 15:26:57 UTC (rev 42819)
@@ -1,6 +1,8 @@
 package org.jboss.tools.dummy.ui.bot.test;
 
 
+import static org.junit.Assert.assertTrue;
+
 import org.eclipse.swtbot.swt.finder.junit.SWTBotJunit4ClassRunner;
 import org.junit.BeforeClass;
 import org.junit.Test;
@@ -16,12 +18,12 @@
 
 	@BeforeClass
 	public static void before() {
-
+		assertTrue(true);
 	}
 
 	@Test
 	public void dummyTest() {
-		
+		assertTrue(true);
 	}
 
 



More information about the jbosstools-commits mailing list