TestimoX

API Reference

Enum

BenchmarkComparator

Namespace TestimoX.Benchmarks
Assembly TestimoX
Base Enum
Implements
IComparable ISpanFormattable IFormattable IConvertible
Modifiers sealed

Defines the comparison applied to current and desired values.

Inheritance

  • Enum
  • BenchmarkComparator

Usage

This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.

Values

public const BenchmarkComparator Exact #

Current and desired values must be equal.

Value: 0
public const BenchmarkComparator GreaterOrEqual #

The current numeric value must be greater than or equal to desired.

Value: 1
public const BenchmarkComparator LessOrEqual #

The current numeric value must be less than or equal to desired.

Value: 2
public const BenchmarkComparator Superset #

The current set must contain every desired item.

Value: 3
public const BenchmarkComparator Subset #

The current set must contain no items outside the desired set.

Value: 4
public const BenchmarkComparator AnyOf #

The current value must equal one of the desired alternatives.

Value: 5
public const BenchmarkComparator MustExist #

The setting must exist.

Value: 6
public const BenchmarkComparator MustNotExist #

The setting must not exist.

Value: 7
public const BenchmarkComparator Regex #

The current text must match a regular expression.

Value: 8
public const BenchmarkComparator NotEqual #

The current value must not equal the undesired value.

Value: 9
public const BenchmarkComparator Between #

The current numeric value must fall within an inclusive range.

Value: 10
public const BenchmarkComparator NotRegex #

The current text must not match a regular expression.

Value: 11