Package net.jsunit

Source Code of net.jsunit.AggregateDistributedTest

package net.jsunit;

import junit.extensions.ActiveTestSuite;
import junit.framework.Test;
import junit.framework.TestSuite;
import net.jsunit.configuration.CompositeConfigurationSource;

public class AggregateDistributedTest {

    public static Test suite() {
        TestSuite suite = new ActiveTestSuite();
        new DistributedTestSuiteBuilder(CompositeConfigurationSource.resolve()).addTestsTo(suite);
        return suite;
    }

}
TOP

Related Classes of net.jsunit.AggregateDistributedTest

TOP
Copyright © 2018 www.massapi.com. 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.