KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > ojb > ejb > pb > StressTestClient


1 package org.apache.ojb.ejb.pb;
2
3 /* Copyright 2004-2005 The Apache Software Foundation
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */

17
18 import junit.framework.TestCase;
19 import org.apache.commons.lang.SystemUtils;
20
21 /**
22  *
23  *
24  * @author <a HREF="mailto:arminw@apache.org">Armin Waibel</a>
25  * @version $Id: StressTestClient.java,v 1.4.2.1 2005/12/21 22:21:38 tomdz Exp $
26  */

27 public class StressTestClient extends TestCase
28 {
29     public StressTestClient(String JavaDoc name)
30     {
31         super(name);
32     }
33
34     public static void main(String JavaDoc[] args)
35     {
36         String JavaDoc[] arr = {StressTestClient.class.getName()};
37         junit.textui.TestRunner.main(arr);
38     }
39
40     public void testStressPB() throws Exception JavaDoc
41     {
42         int loops = 2;
43         int concurrentThreads = 10;
44         int objectsPerThread = 200;
45         String JavaDoc eol = SystemUtils.LINE_SEPARATOR;
46         for (int i = 0; i < loops; i++)
47         {
48             System.out.println(eol + "## perform loop " + (i + 1) + " ##");
49             StressTest.performTest(new int[]{concurrentThreads, objectsPerThread});
50         }
51     }
52 }
53
Popular Tags