1 25 26 package org.objectweb.jonas.jtests.clients.distribution; 27 28 import javax.rmi.PortableRemoteObject ; 29 import org.objectweb.jonas.jtests.beans.bank.Manager; 30 import org.objectweb.jonas.jtests.beans.bank.ManagerHome; 31 import org.objectweb.jonas.jtests.util.JTestCase; 32 33 public abstract class A_bankLoad extends A_bankRead { 34 35 public A_bankLoad(String name) { 36 super(name); 37 } 38 39 public void testReinit() throws Exception { 40 manager.reinitAll(); 41 } 42 43 46 public void testConnections() throws Exception { 47 ope(OP_READ, 0, 19, 10, 24); 48 } 49 50 53 public void testConnectionsTx() throws Exception { 54 ope(OP_READTX, 0, 19, 10, 24); 55 } 56 57 60 public void testConnectionsTx2() throws Exception { 61 ope(OP_READTX, 0, 19, 20, 50); 62 } 63 64 public void testMultiOneMove() throws Exception { 65 ope(OP_ONEMOVE, 0, 5, 1, 20); 66 } 67 68 public void testMultiOneMoveTx() throws Exception { 69 ope(OP_ONEMOVETX, 0, 5, 1, 20); 70 } 71 72 } 73 | Popular Tags |