Forum Discussion
alibaba82
12 years agoSuper Contributor
Hi Prakash,
I made the changes as you suggested, but I don't see the plugins folder being loaded.
Here is my testrunner.bat
output from testrunner.bat. Notice that the plugin is not loaded
I made the changes as you suggested, but I don't see the plugins folder being loaded.
Here is my testrunner.bat
@echo off
set SOAPUI_HOME=%~dp0
cd %SOAPUI_HOME%
if exist "%SOAPUI_HOME%..\jre\bin" goto SET_BUNDLED_JAVA
if exist "%JAVA_HOME%" goto SET_SYSTEM_JAVA
echo JAVA_HOME is not set, unexpected results may occur.
echo Set JAVA_HOME to the directory of your local JDK to avoid this message.
goto SET_SYSTEM_JAVA
:SET_BUNDLED_JAVA
set JAVA=%SOAPUI_HOME%..\jre\bin\java
goto END_SETTING_JAVA
:SET_SYSTEM_JAVA
set JAVA=java
:END_SETTING_JAVA
rem init classpath
set CLASSPATH=%SOAPUI_HOME%soapui-pro-4.6.3.jar;%SOAPUI_HOME%..\lib\*;
rem JVM parameters, modify as appropriate
set JAVA_OPTS=-Xms128m -Xmx1024m -Dsoapui.properties=soapui.properties -Dgroovy.source.encoding=iso-8859-1 "-Dsoapui.home=%SOAPUI_HOME%\"
if "%SOAPUI_HOME%\" == "" goto START
set JAVA_OPTS=%JAVA_OPTS% -Dsoapui.ext.libraries="%SOAPUI_HOME%ext"
set JAVA_OPTS=%JAVA_OPTS% -Dsoapui.ext.listeners="%SOAPUI_HOME%listeners"
set JAVA_OPTS=%JAVA_OPTS% -Dsoapui.ext.actions="%SOAPUI_HOME%actions"
:START
rem ********* run soapui testcase runner ***********
"%JAVA%" %JAVA_OPTS% -cp "%CLASSPATH%" com.eviware.soapui.SoapUIProTestCaseRunner %*
output from testrunner.bat. Notice that the plugin is not loaded
C:\foo>D:\soapUI-Test\SoapUI-Pro-4.6.3\bin\testrunner.bat "C:\Users\araza\soapUI-Tutorials\sample-soapui-project.xml" "-Dmode=QC -shttp tests" "-cTestCase 1" "-j" "-fC:\Reports"
SoapUI Pro 4.6.3 TestCase Runner
08:24:57,032 INFO [SoapUI] Adding [D:\soapUI-Test\SoapUI-Pro-4.6.3\bin\ext\commons-codec-1.3.jar] to extensions classpath
08:24:57,033 INFO [SoapUI] Adding [D:\soapUI-Test\SoapUI-Pro-4.6.3\bin\ext\mongo-2.6.5.jar] to extensions classpath
08:24:57,033 INFO [SoapUI] Adding [D:\soapUI-Test\SoapUI-Pro-4.6.3\bin\ext\Padlock-1.2.jar] to extensions classpath
08:24:57,342 INFO [DefaultSoapUICore] initialized soapui-settings from [C:\Users\araza\soapui-settings.xml]
08:24:57,612 WARN [SoapUIProGroovyScriptEngineFactory] Missing scripts folder [C:\Users\araza\Desktop\verizon training\groovy]
08:24:57,614 INFO [DefaultSoapUICore] Adding listeners from [D:\soapUI-Test\SoapUI-Pro-4.6.3\bin\listeners\demo-listeners.xml]
08:24:58,430 INFO [WsdlProject] Loaded project from [file:/C:/Users/araza/soapUI-Tutorials/sample-soapui-project.xml]
08:24:58,890 WARN [SoapUIProGroovyScriptEngineFactory] Missing scripts folder [C:\Users\araza\Desktop\verizon training\groovy]
08:24:59,561 INFO [log] D:\soapUI-Test\SoapUI-Pro-4.6.3\bin\
08:24:59,573 INFO [SoapUIProTestCaseRunner] Running SoapUI tests in project [Sample Project]
...