package simpledb.test; import simpledb.*; import java.util.*; import java.io.*; /** * Tests running concurrent transactions. * You do not need to pass this test for ps2. */ public class TransactionTest extends Test { private int NTHREADS = 50; public boolean runTest(String args[]) { NTHREADS = Integer.parseInt(args[1]); Thread[] list = new Thread[NTHREADS]; for(int i=0; i