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.Issues.Tap.
Summary
Gets an instance of a provider for issues in a TAP compatible file using specified settings.
- Assembly
- Cake
.Issues .Tap .dll - Namespace
- Cake
.Issues .Tap - Containing Type
- TapIssuesAliases
Syntax
public static IIssueProvider TapIssues(this ICakeContext context, TapIssuesSettings settings)
Examples
Read issues in Test Anything Protocol format:
var settings =
new TapIssuesSettings(
@"C:\build\output.tap",
GenericLogFileFormat);
var issues =
ReadIssues(
TapIssues(settings),
@"c:\repo");
Attributes
Type | Description |
---|---|
Cake |
|
Cake |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
settings | TapIssuesSettings | Settings for reading the TAP file. |
Return Value
Type | Description |
---|---|
IIssueProvider | Instance of a provider for issues in TAP format. |