Package com.arjuna.ats.tools.perftest

Examples of com.arjuna.ats.tools.perftest.TestRunner


            ut = createTx();

            try
            {

                test(new TestRunner(), 1, 1);

                for (int i = 0; i < THRCOUNT.length; i++)
                {
                    for (int j = 0; j < TXCOUNT.length; j++)
                    {
                        TestRunner tr = test(new TestRunner(), THRCOUNT[i], TXCOUNT[j]);

                        writeResults(tr, TXCOUNT[j]);
//                        csv[i + 1][prodIndex + 2] = (float) tr.getAvg() / TXCOUNT[j];
                        csv[i + 1][prodIndex + 2] = TXCOUNT[j] * 1000 / tr.getAvg();
                    }
                }
            }
            catch (SQLException e)
            {
View Full Code Here

TOP

Related Classes of com.arjuna.ats.tools.perftest.TestRunner

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.