Cake.Tools.ReadyAPI.TestRunner addin
This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.Tools.ReadyAPI.TestRunner.
#addin Cake.Tools.ReadyAPI.TestRunner
If TestRunner.bat is not included in the PATH you will have to provide the location of TestRunner.bat as such
Setup(context => {
context.Tools.RegisterFile("C:/Program Files/SmartBear/ReadyAPI-3.5.1/bin/testrunner.bat");
});
General
LaunchTestRunner Alias from Cake.Tools.ReadyAPI.TestRunner addin |
Run your ReadyAPI functional test(s).
var result = LaunchTestRunner
(
"your-readyapi-project.xml",
new TestRunnerSettings()
{
EndPoint = "http://localhost",
PrintSummaryReport = true
}
);
|