BaseIssueProviderFixture<T> Class

Summary

Base class for test fixtures for testing issue providers inherited from BaseIssueProvider.
graph BT Type-->Base0["Object"] Type["BaseIssueProviderFixture<T>"] class Type type-node Derived0["BaseConfigurableIssueProviderFixture<TIssueProvider, TSettings>"]-->Type click Derived0 "/api/Cake.Issues.Testing/BaseConfigurableIssueProviderFixture_2"

Syntax

public abstract class BaseIssueProviderFixture<T> where T : BaseIssueProvider

Type Parameters

Name Description
T Type of issue provider.

Constructors

Name Summary
BaseIssueProviderFixture() Initializes a new instance of the BaseIssueProviderFixture<T> class.

Properties

Name Value Summary
Log FakeLog
Gets or sets the Cake logging instance.
ReadIssuesSettings ReadIssuesSettings
Gets or sets the repository settings.

Methods

Name Value Summary
GetCreateIssueProviderArguments() IList<object>
Returns arguments for creating a new instance of an issue provider.
ReadIssues() IEnumerable<IIssue>
Calls ReadIssues().

Extension Methods

Name Value Summary
NotNull<BaseIssueProviderFixture<T>>(string) void
Throws an exception if the specified parameter's value is null.
GitHub