Package org.jboss.jrunit.decorators

Examples of org.jboss.jrunit.decorators.ThreadLocalDecorator


   protected static final Logger log = Logger.getLogger(MultiThreadedRMIPerformanceClient.class);

   public static Test suite()
   {
      return new ThreadLocalDecorator(MultiThreadedRMIPerformanceClient.class, 1);
   }
View Full Code Here


   protected String host = "localhost";

   public static Test suite()
   {
      return new ThreadLocalDecorator(PerformanceClientTest.class, 1);
   }
View Full Code Here

   protected String host = "localhost";

   public static Test suite()
   {
      return new ThreadLocalDecorator(MultiThreadedPerformanceClientTest.class, 1);
   }
View Full Code Here

   protected static final Logger log = Logger.getLogger(SpringHttpPerformanceClient.class);

   public static Test suite()
   {
      return new ThreadLocalDecorator(SpringHttpPerformanceClient.class, 1);
   }
View Full Code Here

*/
public class MultiThreadJavaPerformanceTestCase extends DataSerializationTest
{
    public static Test suite() throws Exception
    {
        return new ThreadLocalDecorator(MultiThreadJavaPerformanceTestCase.class,THREADS,1,0,true);
    }
View Full Code Here

*/
public class MultiThreadJBossPerformanceTestCase extends DataSerializationTest
{
    public static Test suite() throws Exception
    {
        return new ThreadLocalDecorator(MultiThreadJBossPerformanceTestCase.class,THREADS,1,0,true)
        {
            public void threadsTearDown()
            {
                super.threadsTearDown();
            }
View Full Code Here

    super();
  }
 
    public static Test suite() throws Exception
    {
        return new ThreadLocalDecorator(SoakTestCase.class,2,1000,0,false)
        {
            public void threadsTearDown()
            {
              System.out.println("ThreadsTearDown... process finished");
                super.threadsTearDown();
View Full Code Here

        private String[] z;
    }

    public static Test suite() throws Exception
    {
        return new ThreadLocalDecorator(ClassMetamodelFactoryTestCase.class,5,10,0,false)        {
            public void threadsTearDown()
            {
                super.threadsTearDown();
            }
        };
View Full Code Here

   protected static final Logger log = Logger.getLogger(SpringHessianPerformanceClient.class);

   public static Test suite()
   {
      return new ThreadLocalDecorator(SpringHessianPerformanceClient.class, 1);
   }
View Full Code Here

*/
public class PerformanceClientSideClientTest extends PerformanceClientTest
{
   public static Test suite()
   {
      return new ThreadLocalDecorator(PerformanceClientSideClientTest.class, 1);
   }
View Full Code Here

TOP

Related Classes of org.jboss.jrunit.decorators.ThreadLocalDecorator

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.