126127128129130131132133134135136
private void runTestDeletePersistentAllFails2(PersistenceManager pm) { Transaction tx = pm.currentTransaction(); try { tx.begin(); Point np3 = new Point (5,5); Collection col1 = new java.util.HashSet(); col1.add(p3); col1.add(p4); col1.add(np3);
7071727374757677787980
try { tx.begin(); PCPoint np1 = new PCPoint (3,3); PCPoint np2 = new PCPoint (4,4); Point np3 = new Point (5,5); Collection col1 = new java.util.HashSet(); col1.add(np1); col1.add(np2); col1.add(np3);
102103104105106107108109110111112
77787980818283848586
} /** */ private void createObjects() { p1 = new PCPoint(1,3); p2 = new Point(2,4); col1 = new java.util.HashSet(); col1.add(p1); col1.add(p2); }
7374757677787980818283
try { tx.begin(); PCPoint np1 = new PCPoint (3,3); PCPoint np2 = new PCPoint (4,4); Point np3 = new Point (5,5); Collection col1 = new HashSet(); col1.add(np1); col1.add(np2); col1.add(np3);
105106107108109110111112113114115