//create necessary bits and pieces to deliver a message
//deliver y messages to each queue
public static void main(String[] argv) throws Exception
{
ApplicationRegistry.initialise(new TestApplicationRegistry());
int clients = Integer.parseInt(argv[0]);
int messages = Integer.parseInt(argv[1]);
int iterations = Integer.parseInt(argv[2]);
AveragedRun test = new AveragedRun(new SendPerfTest(clients, messages), iterations);
test.run();