Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Eclipse4/AutomatedTests"

Line 8: Line 8:
 
== Work Required ==
 
== Work Required ==
  
addTest(new TestSuite(StartupTest.class));
+
        addTest(new TestSuite(StartupTest.class));
 
         addTest(new ApiTestSuite());
 
         addTest(new ApiTestSuite());
 
         addTest(new PropertySheetTestSuite());
 
         addTest(new PropertySheetTestSuite());
Line 39: Line 39:
 
         addTest(new StatusHandlingTestSuite());
 
         addTest(new StatusHandlingTestSuite());
 
         addTest(OpenSystemInPlaceEditorTest.suite());
 
         addTest(OpenSystemInPlaceEditorTest.suite());
addTest(new ProgressTestSuite());
+
        addTest(new ProgressTestSuite());
  
 
==Work In Progress==
 
==Work In Progress==
Line 45: Line 45:
 
==Completed==
 
==Completed==
  
UIAutomatedSuite - All pass with delay problem.  Bug created.  (Dean)
+
UIAutomatedSuite     All pass with delay problem.  Bug created.  (Dean)
QuickAccessTestSuite - All pass (Dean)
+
QuickAccessTestSuite All pass (Dean)

Revision as of 12:16, 13 December 2011

I thought this page might help us co-ordinate the work on Bug 366451

I've pasted in the tests from the UITestSuite class.

I suggest you pick something from the Work Required section, cut and paste it into the Work In Progress section while you are working on it, and then to the . Perhaps you can annotate which one you are currently looking at and the states of ones you have finished looking at so that we don't duplicate work?


Work Required

       addTest(new TestSuite(StartupTest.class));
       addTest(new ApiTestSuite());
       addTest(new PropertySheetTestSuite());
       addTest(new InternalTestSuite());
       addTest(new NavigatorTestSuite());
       addTest(new DecoratorsTestSuite());
       addTest(new AdaptableTestSuite());
       addTest(new ZoomTestSuite());
       addTest(new DataTransferTestSuite());
       addTest(new PreferencesTestSuite());
       addTest(new DynamicPluginsTestSuite());
       addTest(new KeysTestSuite());
       addTest(new MultiPageEditorTestSuite());
       addTest(new ActivitiesTestSuite());
       addTest(new CommandsTestSuite());
       addTest(new ContextsTestSuite());
       addTest(new DragTestSuite());
       addTest(new ThemesTestSuite());
       addTest(new IntroTestSuite());
       addTest(new MenusTestSuite());
       addTest(new EncodingTestSuite());
       addTest(new PresentationsTestSuite());
       addTest(new TestSuite(LeakTests.class));
       addTest(new ConcurrencyTestSuite());
       addTest(new OperationsTestSuite());
       addTest(new FieldAssistTestSuite());
       addTest(new MultiEditorTestSuite());
       addTest(new TestSuite(FilteredTreeTests.class));
       addTest(new ServicesTestSuite());
       addTest(new StatusHandlingTestSuite());
       addTest(OpenSystemInPlaceEditorTest.suite());
       addTest(new ProgressTestSuite());

Work In Progress

Completed

UIAutomatedSuite All pass with delay problem. Bug created. (Dean) QuickAccessTestSuite All pass (Dean)

Back to the top