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 11:43, 14 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
277017 class chooser widgets don't work if package is set in orm.xml Create JPA 2.0 Generic project JPA Project is created successfully
... ... Create JPA Entity Entity is created successfully
... ... Create JPA ORM mapping file and add JPA Entity to mapping file Entity is added to mapping file successfully
... ... Select the JPA Entity in the orm mapping file, then click on Java Class in the JPA Details pane Verify the JPA Entity editor window opens(appears) and the JPA Details appears so you can edit the entity.
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