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

WTP/Build/WTP Adding JUnits

< WTP‎ | Build
Revision as of 19:51, 26 January 2008 by David williams.acm.org (Talk | contribs) (PROJECT test.xml file)

How To Add a JUnit Project To the WTP Builds

NORMAL (nearly) PROJECT CREATION

    1. put in cvs
      directory should be created first, creating a folder in the 'tests' directory of the component.
      then using eclipse wizard to 'share', but don't use default name (that'd create a top level project)
      but instead use the 'browse' function to put in the folder created.
    2. add to appropriate .map file (using the project name, and full cvs name).
      it must be added "by hand" to a map file before it can be released with release tool.
    3. add the project to a features xml file.
      For test plugins, the test plugin should NOT be packed (there are some ant tasks that use file functions).
      And, this means to omit the unpack attribute.
    4. send note to webmaster to have project and its location added to the modules file in CVS


PROJECT test.xml file

  • copy a test.xml file from another project, or use this example from the xml test suite: Test.zip and edit the 3 or 4 things that are project specific:
  • plugin name
  • main classname that runs all the tests
  • type type of test - either
  • target="core-test" (if there is no UI required), or
  • target="ui-test" (if there is UI required).
  • add the test.xml file (using check box in properties editor) to the build.properties file so it'll be included in the "bin" build.

WTP test.xml file

    1. there's a test.xml file in wtpBuilder that needs updating. Check two spots.
      1. one is that the target needs to be defined in top part of file or else the plugin included in another existing target, if there is a "family" of tests).
      2. Then near the bottom the "all" target must be updated to run the test target (unless the new one was just included in an existing one).


Back to WTP Build Process and Procedures
Back to Web Tools Wiki Home

Back to the top