TestFixtureBuilderExtensions.

With<TBuilder, TField>(TBuilder, List<TField>, IEnumerable<TField>) Method

Summary

Adds the specified list of fields to the builder.

Syntax

public static TBuilder With<TBuilder, TField>(this TBuilder this, ref List<TField> field, IEnumerable<TField> values) 
    where TBuilder : ITestFixtureBuilder

Type Parameters

Name Description
TBuilder The type of the builder.
TField The type of the field.

Parameters

Name Type Description
this TBuilder The this.
field List<TField> The field.
values IEnumerable<TField> The values.

Return Value

Type Description
TBuilder