Table of Contents

Method AddRange

Namespace
Xunit
Assembly
xunit.v3.core.dll

AddRange(IEnumerable<TRawDataRow>)

Adds multiple rows to the theory.

public void AddRange(IEnumerable<TRawDataRow> rows)

Parameters

rows IEnumerable<TRawDataRow>

The rows of data to be added.

AddRange(params TRawDataRow[])

Adds multiple rows to the theory.

public void AddRange(params TRawDataRow[] rows)

Parameters

rows TRawDataRow[]

The rows of data to be added.

AddRange(IEnumerable<TTheoryDataRow>)

Adds multiple rows to the theory.

public void AddRange(IEnumerable<TTheoryDataRow> rows)

Parameters

rows IEnumerable<TTheoryDataRow>

The rows of data to be added.

AddRange(params TTheoryDataRow[])

Adds multiple rows to the theory.

public void AddRange(params TTheoryDataRow[] rows)

Parameters

rows TTheoryDataRow[]

The rows of data to be added.