Is there a way to speed up the testrunner execution by skipping the pluggin load?
I am running some test cases from the command line using the testrunner. For some reason the actual execution time for the web service is very short, but the entire process to test is taking at least 14 seconds from beginning to end. Here is the log:
13:06:29,431 INFO [DefaultSoapUICore] initialized soapui-settings from [C:\soapui-settings.xml]
13:06:34,922 INFO [PluginManager] 0 plugins loaded in 0 ms
13:06:34,922 INFO [DefaultSoapUICore] All plugins loaded
SoapUI 5.2.1 TestCase Runner
13:06:36,186 INFO [WsdlProject] Loaded project from [file:/c:/SomeFile.xml]
13:06:36,202 INFO [SoapUITestCaseRunner] Running SoapUI tests in project [SomeProject]
13:06:36,202 INFO [SoapUITestCaseRunner] Running Project [SomeProject], runType = SEQUENTIAL
13:06:36,217 INFO [SoapUITestCaseRunner] Running SoapUI testcase [TestCase 1]
13:06:36,233 INFO [SoapUITestCaseRunner] running step [SomeMethod - Request 1]
13:06:37,247 DEBUG [HttpClientSupport$SoapUIHttpClient] Attempt 1 to execute request
13:06:37,247 DEBUG [SoapUIMultiThreadedHttpConnectionManager$SoapUIDefaultClientConnection] Sending request: POST /SomeService.svc/basic HTTP/1.1
13:06:43,222 DEBUG [SoapUIMultiThreadedHttpConnectionManager$SoapUIDefaultClientConnection] Receiving response: HTTP/1.1 200 OK
13:06:43,222 DEBUG [HttpClientSupport$SoapUIHttpClient] Connection can be kept alive indefinitely
13:06:43,409 INFO [SoapUITestCaseRunner] Assertion [SOAP Response] has status VALID
13:06:43,409 INFO [SoapUITestCaseRunner] Finished running SoapUI testcase [TestCase 1], time taken: 7164ms, status: FINISHED
13:06:43,409 INFO [SoapUITestCaseRunner] Project [SomeProject] finished with status [FINISHED] in 7207ms
The actual request begins at 13:06:37,247 and ends at 13:06:43,222 which is about only 6 seconds. Is there a way to speed up the process that the test runner does at the beginning? Thanks.