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