Package org.jboss.dtf.testframework.unittest

Examples of org.jboss.dtf.testframework.unittest.LocalHarness


    }

    public static void main (String[] args)
    {
        SuspendResume test = new SuspendResume();
        test.initialise(null, null, args, new LocalHarness());
        test.runTest();
    }
View Full Code Here


  }

    public static void main (String[] args)
    {
    NullResource test = new NullResource();
    test.initialise(null, null, args, new LocalHarness());
    test.runTest();
    }
View Full Code Here

  }

  public static void main(String[] args)
  {
    JTAAbort test = new JTAAbort();
    test.initialise(null, null, args, new LocalHarness());
    test.runTest();
  }
View Full Code Here

    }

    public static void main(String[] args)
    {
        JTATransactionCommitTest2 test = new JTATransactionCommitTest2();
        test.initialise(null, null, args, new LocalHarness());
        test.runTest();
    }
View Full Code Here

    public static void main(String[] args)
    {
        PerformanceTestWrapper ptw = new PerformanceTestWrapper();

        ptw.initialise(null, null, args, new LocalHarness());
        ptw.runTest();
    }
View Full Code Here

    }

public static void main(String[] args)
    {
        AtomicTest test = new AtomicTest();
        test.initialise( null, null, args, new LocalHarness() );
        test.runTest();
    }
View Full Code Here

    }

public static void main(String[] args)
    {
        PersistenceTest test = new PersistenceTest();
        test.initialise(null, null, args, new LocalHarness());
        test.runTest();
    }
View Full Code Here

    }

public static void main(String[] args)
    {
        Hammer test = new Hammer();
        test.initialise(null, null, args, new LocalHarness());
        test.runTest();
    }
View Full Code Here

    }

public static void main(String[] args)
    {
        RecoverableTest test = new RecoverableTest();
        test.initialise(null, null, args, new LocalHarness());
        test.runTest();
    }
View Full Code Here

    }

    public static void main (String[] args)
    {
        SuspendResume ct = new SuspendResume();
        ct.initialise(null, null, args, new LocalHarness());
        ct.runTest();
    }
View Full Code Here

TOP

Related Classes of org.jboss.dtf.testframework.unittest.LocalHarness

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.