Summary
Runs all Fixie tests in the specified assemblies,
using the specified settings.
Syntax
[CakeMethodAlias]
public static void Fixie(this ICakeContext context, IEnumerable<string> assemblies, FixieSettings settings)
Examples
var assemblies = new [] {
"UnitTests1.dll",
"UnitTests2.dll"
};
Fixie(assemblies, new FixieSettings {
NUnitXml = TestResult.xml
});
Attributes
Parameters
Name |
Type |
Description |
context |
ICakeContext |
The context. |
assemblies |
IEnumerable<string> |
The assemblies. |
settings |
FixieSettings |
The settings. |
Return Value