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

Line 5: Line 5:
 
   .source-xml {padding:1em;border:1px solid black; background-color: white;}
 
   .source-xml {padding:1em;border:1px solid black; background-color: white;}
 
   .source-text {padding:1em;border:1px dashed black; background-color: white;}
 
   .source-text {padding:1em;border:1px dashed black; background-color: white;}
BODY { font-family : ariel, monospace, sans-serif; }
 
  P { font-weight: normal; font-family : ariel, monospace, sans-serif; color: black; background-color: transparent;}
 
  B { font-weight: normal; color: black; background-color: transparent;}
 
  A:visited { font-weight : normal; text-decoration : none; background-color : transparent; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
 
  A:link    { font-weight : normal; text-decoration : none; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
 
  A:hover  { color : #000000; font-weight : normal; text-decoration : underline; background-color : yellow; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
 
  A:active  { color : #000000; font-weight: normal; background-color : transparent; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
 
 
   .VERSION { font-size: small; font-family : arial, sans-serif; }
 
   .VERSION { font-size: small; font-family : arial, sans-serif; }
 
   .NORM  { color: black;  background-color: transparent;}
 
   .NORM  { color: black;  background-color: transparent;}

Revision as of 14:13, 12 August 2011


Parsing DDL for Metadata: Testing

This page provides links to the Wiki pages for testing the Oracle DDL Parser

The git repository is located at git://git.eclipse.org/gitroot/eclipselink/oracleddlparser.test.git

The tests are laid out as follows:

       src
  └── org.eclipse.persistence.tools.oracleddl.test
        ├── AllTests.java
        ├── TestHelper.java
        ├── databasetypebuilder
        │   ├── DatabaseTypeBuilderTestSuite.java
        │   ├── IOTTableDDLTestSuite.java
        │   ├── TableDDLTestSuite.java
        │   └── TransformsTestSuite.java
        ├── ddlparser
        │   └── DDLParserTest.java
        └── visit
            ├── FunctionTypeTest.java
            ├── FunctionTypeVisitor.java
            ├── IntervalTypeTest.java
            ├── IntervalVisitor.java
            ├── PrecisionTypeTest.java
            ├── PrecisionTypeVisitor.java
            ├── ProcedureTypeTest.java
            ├── ProcedureTypeVisitor.java
            ├── SizedTypeTest.java
            ├── SizedTypeVisitor.java
            ├── TableTypeTest.java
            ├── TableTypeVisitor.java
            └── VisitorsTestSuite.java

Links

Back to the top