assertthat
Version:
assertthat provides fluent TDD.
9 lines (8 loc) • 365 B
TypeScript
import { BenchmarkFunction } from '../types/BenchmarkFunction';
import { BenchmarkSetup } from '../types/BenchmarkSetup';
declare const name = "compare large arrays";
declare const setup: BenchmarkSetup;
declare const benchmark: BenchmarkFunction;
declare const scales: number[];
declare const unit = "array items";
export { benchmark, name, scales, setup, unit };