CaseKind import { CaseKind } from "destack:test"; Test case or suite execution kind. export enum CaseKind { Example = 1, Bench = 2, Fuzz = 3, Simulation = 4, } language/library/src/test/options.ds:5:14 Variants Example = 1 Ordinary example-based check. Bench = 2 Benchmark case. Fuzz = 3 Fuzz case. Simulation = 4 Simulation case.