follow this from menu : templates -- c# -- Test -- Unit Project
You should see that below
Add selenium references to project
build project
import com.eviware.soapui.tools.SoapUITestCaseRunner;
public class SoapUIRunner {
private final static String SOAP_PROJECT_XML = "/src/resources/test-soapui-project_convert1.xml";
public void testRunner() throws Exception
{
SoapUITestCaseRunner runner = new SoapUITestCaseRunner();
runner.setProjectFile(SOAP_PROJECT_XML);
runner.run();
}
}