Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/Development/Testing/SDO"

(Running the SDO Junit tests)
(Running the SDO Junit tests)
Line 6: Line 6:
 
== Running the SDO Junit tests==
 
== Running the SDO Junit tests==
  
Source checked into Eclipse workspace
+
Source checked out into Eclipse workspace
 +
Prerequisites:
 +
# Eclipse installed with subversion pluggin
 +
# eclipselink.core and eclipselink.lib checked out into workspace
 +
# eclipselink.sdo, eclipselink.sdo.lib and eclipselink.sdo.test checked out into workspace
  
 
The SDO test suite is written using JUnit.  It consists of a set of jars that contain various tests and resources. The SDO tests are contained in the eclipselink.sdo.test project
 
The SDO test suite is written using JUnit.  It consists of a set of jars that contain various tests and resources. The SDO tests are contained in the eclipselink.sdo.test project

Revision as of 10:45, 22 October 2007

Summary

This page is intended to outline the setup and execution steps required to successfully run the SDO JUnit tests - It is currently undergoing the first draft as of 20071019.

Building the SDO Junit tests

Running the SDO Junit tests

Source checked out into Eclipse workspace Prerequisites:

  1. Eclipse installed with subversion pluggin
  2. eclipselink.core and eclipselink.lib checked out into workspace
  3. eclipselink.sdo, eclipselink.sdo.lib and eclipselink.sdo.test checked out into workspace

The SDO test suite is written using JUnit. It consists of a set of jars that contain various tests and resources. The SDO tests are contained in the eclipselink.sdo.test project ...in progress

  1. Run the build.xml in base directory of sdo.test. This will create a set of jar files containing the sdo runtime.
  2. Navigate to the <workspace>/eclipselink.sdo.test directory
  3. Run ant build.xml
  4. View results in the reports subdirectory

Source checked outside of Eclipse workspace

  1. Create your own view directory - for example "c:/myview/"
  2. Check out the SVN project for SDO into this directory
  3. Navigate to the eclipselink.sdo.test directory
  4. Run ant build.xml
  5. View results in the reports subdirectory

Back to the top