assertthat
Version:
assertthat provides fluent TDD.
17 lines (14 loc) • 370 B
text/typescript
import { BenchmarkFunction } from './BenchmarkFunction';
import { BenchmarkSetup } from './BenchmarkSetup';
import { BenchmarkTeardown } from './BenchmarkTeardown';
interface BenchmarkCase {
name: string;
unit: string;
benchmark: BenchmarkFunction;
scales: number[];
setup?: BenchmarkSetup;
teardown?: BenchmarkTeardown;
}
export type {
BenchmarkCase
};