TestimoX

API Reference

Enum

BenchmarkSqlExpectedValueKind

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

Identifies how one SQL result value is compared.

Inheritance

  • Enum
  • BenchmarkSqlExpectedValueKind

Usage

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

Values

public const BenchmarkSqlExpectedValueKind Exact #

The value must equal the expected scalar.

Value: 0
public const BenchmarkSqlExpectedValueKind Regex #

The value must match a regular expression.

Value: 1
public const BenchmarkSqlExpectedValueKind Range #

The value must fall within an inclusive numeric range.

Value: 2
public const BenchmarkSqlExpectedValueKind Null #

The database value must be null.

Value: 3
public const BenchmarkSqlExpectedValueKind ValueOrNull #

A null database value or the configured non-null expectation is accepted.

Value: 4