Issue Details (XML | Word | Printable)

Key: JDO-423
Type: Bug Bug
Status: Closed Closed
Resolution: Invalid
Priority: Minor Minor
Assignee: Craig Russell
Reporter: Ilan Kirsh
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
JDO

Missing addTearDownClass in org.apache.jdo.tck.query.jdoql.variables.VariablesWithoutExtent

Created: 10/Sep/06 01:22 AM   Updated: 11/Sep/06 07:53 PM
Return to search
Component/s: tck2
Affects Version/s: JDO 2 final
Fix Version/s: None

Time Tracking:
Not Specified

Resolution Date: 11/Sep/06 07:53 PM


 Description  « Hide
Lines 101- 108, instead of:

    protected void localSetUp() {
        addTearDownClass(CompanyModelReader.getTearDownClasses());
        loadAndPersistCompanyModel(getPM());
        NoExtent noExtent = new NoExtent(1);
        makePersistent(noExtent);
        addTearDownInstance(noExtent);
    }

should be:

    protected void localSetUp() {
        addTearDownClass(CompanyModelReader.getTearDownClasses());
        addTearDownClass(NoExtent.class); // Added missing addTearDownClass
        loadAndPersistCompanyModel(getPM());
        NoExtent noExtent = new NoExtent(1);
        makePersistent(noExtent);
        addTearDownInstance(noExtent);
    }


 All   Comments   Work Log   Change History   Subversion Commits      Sort Order: Ascending order - Click to sort in descending order
No work has yet been logged on this issue.