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

EclipseLink/Development/DBWS/ParseDDLDS/Testing


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