
|
If you were logged in you would be able to see more operations.
|
|
|
| Resolution Date: |
11/Sep/06 07:53 PM
|
|
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);
}
|
|
Description
|
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);
}
|
Show » |
| No work has yet been logged on this issue.
|
|