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

Dali 3.2 M6

Revision as of 14:07, 13 February 2012 by Unnamed Poltroon (Talk)

Dali 3.2

Dali 3.2 M6 Release Manual Testing

Manual Testing for 3.2 M6 Release
Bug No. Description Test Steps Test Step Results
370877 missing java eclipselink customizer validation Create JPA (EclipseLink) project, Create the following JPA entity
    @Entity
    @Customizer(FooCustomizer.class)
    public class Employee {}
Project and entity are created successfully
... ... Create the following class
    package com.foo;
    public class FooCustomizer {
       private FooCustomizer() {
           super();
       }
    }
Verify validation apears for the class not having a public zero arg constructor or that

it does not implement DescriptorCustomizer

Back to the top