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 "Dali 3.0 RC2"

Line 8: Line 8:
  
 
|-
 
|-
 +
| 346307
 +
| Invalid JAXB packages shown in project explorer when member classes are annotated
 +
| Create a new JAXB project
 +
| JAXB project is created successfully
 +
|-
 +
| ...
 +
| ...
 +
| Create a new class named Parent within a package named test
 +
| Class is created
 +
|-
 +
| ...
 +
| ...
 +
| Edit the class in the editor with the following and save - package test;
 +
 +
import javax.xml.bind.annotation.XmlType;
 +
@XmlType
 +
public class Parent {
 +
 +
    @XmlType
 +
    public static class Child {
 +
 +
    }
 +
}
 +
| Verify the class is updated
 +
|-
 +
| ...
 +
| ...
 +
| Go to project explorer and expand JAXB Content folder
 +
| Verify JAXB Content\test\Parent and JAXB Content\test\Parent.Child appear only
 +
|-
 
| 346728
 
| 346728
 
| NPE during creation of new diagram   
 
| NPE during creation of new diagram   

Revision as of 13:31, 8 June 2011

Dali QA Testing

Dali 3.0 RC2 Manual Testing

Manual Testing for 3.0 RC2 Release
Bug No. Description Test Steps Test Step Results
346307 Invalid JAXB packages shown in project explorer when member classes are annotated Create a new JAXB project JAXB project is created successfully
... ... Create a new class named Parent within a package named test Class is created
... ... Edit the class in the editor with the following and save - package test;

import javax.xml.bind.annotation.XmlType; @XmlType public class Parent {

   @XmlType
   public static class Child {
   }

}

Verify the class is updated
... ... Go to project explorer and expand JAXB Content folder Verify JAXB Content\test\Parent and JAXB Content\test\Parent.Child appear only
346728 NPE during creation of new diagram Create a New JPA 1.0, Generic 1.0 project, Expand the created project Verify project is created successfully
... ... R-Click on the project and select JPA Tools > Open Diagram Verify diagrams\diagram.xml appears in Project explorer under the project and diagram opens in the editor without error
... ...

Back to the top