Package com.lmax.ant.paralleljunit.remote

Examples of com.lmax.ant.paralleljunit.remote.TestSpecification


        this.testSpecificationFactory = testSpecificationFactory;
    }

    public TestResult execute(final JUnitTest test)
    {
        final TestSpecification testSpecification = testSpecificationFactory.create(test);

        try
        {
            socketConnection.writeObject(RemoteTestRunnerCommand.RUN_TEST);
            socketConnection.writeObject(testSpecification);
View Full Code Here

TOP

Related Classes of com.lmax.ant.paralleljunit.remote.TestSpecification

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.