You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by mc...@apache.org on 2008/10/17 00:59:39 UTC

svn commit: r705395 - in /geronimo/devtools/eclipse-plugin/branches/2.1.4/testsuite: eclipse/build.xml plugins/org.apache.geronimo.testsuite.v20/src/main/java/org/apache/geronimo/testsuite/v20/ui/EclipseUITest.java

Author: mcconne
Date: Thu Oct 16 15:59:39 2008
New Revision: 705395

URL: http://svn.apache.org/viewvc?rev=705395&view=rev
Log:
Support only one branding testcase across all servers in the testsuite

Modified:
    geronimo/devtools/eclipse-plugin/branches/2.1.4/testsuite/eclipse/build.xml
    geronimo/devtools/eclipse-plugin/branches/2.1.4/testsuite/plugins/org.apache.geronimo.testsuite.v20/src/main/java/org/apache/geronimo/testsuite/v20/ui/EclipseUITest.java

Modified: geronimo/devtools/eclipse-plugin/branches/2.1.4/testsuite/eclipse/build.xml
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.1.4/testsuite/eclipse/build.xml?rev=705395&r1=705394&r2=705395&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/branches/2.1.4/testsuite/eclipse/build.xml (original)
+++ geronimo/devtools/eclipse-plugin/branches/2.1.4/testsuite/eclipse/build.xml Thu Oct 16 15:59:39 2008
@@ -271,10 +271,10 @@
         </copy>
     </target>
 
-    <target name="gep-features" depends="init" description="Unzip the GEP feature(s) into the test_eclipse installation">
+    <target name="gep-features" depends="init" description="Unzip the GEP latest feature to the launcher Eclipse features directory">
         <!--
         |  
-        | Unzip the GEP feature(s) to the launcher Eclipse features directory (for branding testcases)
+        | Unzip the GEP latest feature to the launcher Eclipse features directory (for one branding testcase)
         |  
         -->
         <mkdir dir="${test_eclipse}"/>

Modified: geronimo/devtools/eclipse-plugin/branches/2.1.4/testsuite/plugins/org.apache.geronimo.testsuite.v20/src/main/java/org/apache/geronimo/testsuite/v20/ui/EclipseUITest.java
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/branches/2.1.4/testsuite/plugins/org.apache.geronimo.testsuite.v20/src/main/java/org/apache/geronimo/testsuite/v20/ui/EclipseUITest.java?rev=705395&r1=705394&r2=705395&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/branches/2.1.4/testsuite/plugins/org.apache.geronimo.testsuite.v20/src/main/java/org/apache/geronimo/testsuite/v20/ui/EclipseUITest.java (original)
+++ geronimo/devtools/eclipse-plugin/branches/2.1.4/testsuite/plugins/org.apache.geronimo.testsuite.v20/src/main/java/org/apache/geronimo/testsuite/v20/ui/EclipseUITest.java Thu Oct 16 15:59:39 2008
@@ -45,18 +45,6 @@
     {
         boolean success = false;
         try {
-            // About Eclipse Test Case. There are three Shell newShell, nextShell and nextNextShell 
-            //used because we need to save the states for newShell and nextShell
-            //newShell->nextShell->nextNextShell this is the order in which shell comes up
-            aShell = WorkbenchUtilities.getWorkbenchWindow().getShell();
-            aHelper = new AbbotHelper(aShell);
-            Shell newShell = aHelper.clickMenuItem(aShell, new String[]{"&Help","&About Eclipse Platform"},"About Eclipse Platform");
-            Shell nextShell = aHelper.clickImageButton(newShell, "Apache.org - Geronimo v21 Server Tools Core Plug-in","About Eclipse Platform Features");
-            Shell nextNextShell = aHelper.clickButton(nextShell, "&Plug-in Details", "Feature Plug-ins");
-            aHelper.clickButton(nextNextShell, IDialogConstants.OK_LABEL);
-            aHelper.clickButton(nextShell, IDialogConstants.OK_LABEL);
-            aHelper.clickButton(newShell, IDialogConstants.OK_LABEL);
-
             success = true;
         }
         catch(Exception e)