Summary
Runs all Fixie tests in the specified assemblies,
using the specified settings.
- Namespace
- Cake
.Common .Tools .Fixie - Containing Type
- FixieAliases
Syntax
[CakeMethodAlias]
public static void Fixie(this ICakeContext context, IEnumerable<FilePath> assemblies, FixieSettings settings)
Examples
var assemblies = GetFiles("./src/UnitTests/*.dll");
Fixie(assemblies, new FixieSettings {
NUnitXml = TestResult.xml
});
Attributes
Type | Description |
---|---|
Cake |
An attribute used to mark script method aliases. |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
assemblies | IEnumerable |
The assemblies. |
settings | FixieSettings | The settings. |
Return Value
Type | Description |
---|---|
void |