<PackageReference Include="NUnit" Version="4.3.2" />

RepeatAttribute

Specifies that a test should be run multiple times.

The test command for the RepeatAttribute

public bool StopOnFailure { get; set; }

Whether to stop when a test is not successful or not

public RepeatAttribute(int count)

Construct a RepeatAttribute

public RepeatAttribute(int count, bool stopOnFailure)

Construct a RepeatAttribute

public TestCommand Wrap(TestCommand command)

Wrap a command and return the result.