# CaseKind

`import { CaseKind } from "destack:test";`

Test case or suite execution kind.

```ds title="CaseKind"
export enum CaseKind {
    Example = 1,
    Bench = 2,
    Fuzz = 3,
    Simulation = 4,
}
```

[language/library/src/test/options.ds:5:14](https://github.com/destack-sh/destack/blob/main/language/library/src/test/options.ds#L5-L14)

## Variants

### `Example = 1`

Ordinary example-based check.

### `Bench = 2`

Benchmark case.

### `Fuzz = 3`

Fuzz case.

### `Simulation = 4`

Simulation case.
