Skip to content

ItemBuilderBase<TFixtureItem>.BuildMany method

Builds many concrete instance of type TFixtureItem. The method Build will be called n times where n = count.

csharp
public IReadOnlyList<TFixtureItem> BuildMany(int count)
public IReadOnlyList<TFixtureItem> BuildMany(int count)
parameterdescription
countThe number of elements returned. Must be greater equal to 0.

Return Value

A list of concrete instance of type TFixtureItem.

See Also