All Downloads are FREE. Search and download functionalities are using the official Maven repository.

unit_test.TCPServer.Main Maven / Gradle / Ivy

package unit_test.TCPServer;

import java.util.ArrayList;

import com.arpitos.framework.Runner;
import com.arpitos.interfaces.TestExecutable;

import unit_test.PrePostCycle;


public class Main {

	public static ArrayList getTestList() {
		ArrayList tests = new ArrayList();

		//--------------------------------------------------------------------------------------------
		tests.add(new Test_tcp_server_client());
		//--------------------------------------------------------------------------------------------

		return tests;
	}

	public static void main(String[] args) throws Exception {
		int testLoopCount = 1;
		String serialNumber = "A123456789";
		Runner.run(new PrePostCycle(), getTestList(), Main.class, serialNumber, testLoopCount);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy