Cake.Tools.ReadyAPI.TestEngine 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.TestEngine.
#addin Cake.Tools.ReadyAPI.TestEngine
If TestEngine.ps1 is not included in the PATH you will have to provide the location of TestEngine.ps1 as such
Setup(context => {
context.Tools.RegisterFile("C:/Users/yourusername/AppData/Roaming/npm/testengine.ps1");
});
General
RunProject Alias from Cake.Tools.ReadyAPI.TestEngine addin |
Run your ReadyAPI functional test(s).
var result = RunProject
(
"your-readyapi-project.xml",
new TestEngineSettings()
{
ConfigurationFile = "config.json",
PrintReport = true
}
);
|