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.
Summary
Run your ReadyAPI functional test(s).
var result = LaunchTestRunner
(
"your-readyapi-project.xml",
new TestRunnerSettings()
{
EndPoint = "http://localhost",
PrintSummaryReport = true
}
);
Syntax
public static int LaunchTestRunner(this ICakeContext context, string projectFile, TestRunnerSettings settings)
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
Parameters
Name |
Type |
Description |
context |
ICakeContext |
The Cake context. |
projectFile |
string |
The ReadyAPI project. |
settings |
TestRunnerSettings |
The settings that will be provided to TestRunner.bat. |
Return Value
Type |
Description |
int |
0 for success. Please see Exit Codes for additional information |