Enum BenchmarkFailurePolicy
Controls how the benchmark runner should behave when one or more suites fail.
public enum BenchmarkFailurePolicy
Fields
ContinueAndAttachReport = 2Run all requested suites and return a report even if some fail.
ContinueAndThrowAggregate = 1Run all requested suites, then throw an aggregate exception if any failed.
FailFast = 0Stop at the first failure and throw immediately.