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 "EclipseLink/Development/Testing/DBWS"

(DBWS core tests)
Line 3: Line 3:
  
 
===DBWS core tests===
 
===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><:
+
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">
 
<source lang="text" enclose="div">
 
Eclipselink Tree
 
Eclipselink Tree
Line 11: Line 11:
 
     |   
 
     |   
 
     +---dbws
 
     +---dbws
     |  +---<b>eclipselink.dbws.test</b>
+
     |  +---eclipselink.dbws.test
 
     |  |  |  .classpath
 
     |  |  |  .classpath
 
     |  |  |  .project
 
     |  |  |  .project

Revision as of 12:07, 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
    |   +---eclipselink.dbws.test
    |   |   |   .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

Back to the top