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/DBWS"

Line 2: Line 2:
 
DBWS has a number of test suites, all written using JUnit4. This page outlines the various testsuites and the types of testing in each suite.
 
DBWS has a number of test suites, all written using JUnit4. This page outlines the various testsuites and the types of testing in each suite.
  
TBD
+
===DBWS core tests===
 +
In the SVN repository under the DBWS component's high-level directory, there is a project <b><code>eclipselink.dbws.test</code></b><:
 +
<source lang="text" enclose="div">
 +
Eclipselink Tree
 +
\---trunk
 +
    |  about.html
 +
    |  ...
 +
    | 
 +
    +---dbws
 +
    |  +---<b>eclipselink.dbws.test</b>
 +
    |  |  |  .classpath
 +
    |  |  |  .project
 +
    |  |  |  build.properties
 +
    |  |  |  build.xml
 +
    |  |  |
 +
    |  |  +---etc
 +
    |  |  |      dbsetup_keymappings.sql
 +
    |  |  |      dbsetup_relationships.sql
 +
    |  |  |      dbteardown_keymappings.sql
 +
    |  |  |      dbteardown_relationships.sql
 +
    |  |  |
 +
    |  |  \---src
 +
    |  |      \---dbws
 +
    |  |          \---testing
 +
    |  |              |  DBWSTestHelper.java
 +
    |  |              |  RootHelper.java
 +
    |  |              |
 +
    |  |              +---keymappings
 +
    |  |              |      KeyMappingsTestSuite.java
 +
    |  |              |
 +
    |  |              \---relationships
 +
    |  |                      RelationshipsAddress.java
 +
    |  |                      RelationshipsEmployee.java
 +
    |  |                      RelationshipsPhone.java
 +
    |  |                      RelationshipsTestSuite.java
 +
</source>

Revision as of 12:04, 23 March 2009

Summary

DBWS has a number of test suites, all written using JUnit4. This page outlines the various testsuites and the types of testing in each suite.

DBWS core tests

In the SVN repository under the DBWS component's high-level directory, there is a project eclipselink.dbws.test<:

Eclipselink Tree
\---trunk
    |   about.html
    |   ...
    |  
    +---dbws
    |   +---<b>eclipselink.dbws.test</b>
    |   |   |   .classpath
    |   |   |   .project
    |   |   |   build.properties
    |   |   |   build.xml
    |   |   |
    |   |   +---etc
    |   |   |       dbsetup_keymappings.sql
    |   |   |       dbsetup_relationships.sql
    |   |   |       dbteardown_keymappings.sql
    |   |   |       dbteardown_relationships.sql
    |   |   |
    |   |   \---src
    |   |       \---dbws
    |   |           \---testing
    |   |               |   DBWSTestHelper.java
    |   |               |   RootHelper.java
    |   |               |
    |   |               +---keymappings
    |   |               |       KeyMappingsTestSuite.java
    |   |               |
    |   |               \---relationships
    |   |                       RelationshipsAddress.java
    |   |                       RelationshipsEmployee.java
    |   |                       RelationshipsPhone.java
    |   |                       RelationshipsTestSuite.java

Copyright © Eclipse Foundation, Inc. All Rights Reserved.