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

NUnit.Framework.RepeatAttribute

Specifies that a test should be run multiple times.
namespace NUnit.Framework { public class RepeatAttribute : PropertyAttribute, IRepeatTest, ICommandWrapper { public class RepeatedTestCommand : DelegatingTestCommand { public RepeatedTestCommand(TestCommand innerCommand, int repeatCount, bool stopOnFailure); } public bool StopOnFailure { get; set; } public RepeatAttribute(int count); public RepeatAttribute(int count, bool stopOnFailure); public TestCommand Wrap(TestCommand command); } }