assertthat
Version:
assertthat provides fluent TDD.
15 lines (12 loc) • 389 B
text/typescript
import { BenchmarkCase } from './types/BenchmarkCase';
import * as compareLargeArrays from './cases/compareLargeArrays';
import * as compareLargeObjects from './cases/compareLargeObjects';
import * as compareLongStrings from './cases/compareLongStrings';
const benchmarks: BenchmarkCase[] = [
compareLargeArrays,
compareLargeObjects,
compareLongStrings
];
export {
benchmarks
};