1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-29 02:29:06 -05:00
denoland-deno/testing/bench_example.ts

30 lines
621 B
TypeScript
Raw Normal View History

2019-03-11 14:21:13 -04:00
// https://deno.land/std/testing/bench.ts
import { BenchmarkTimer, bench, runIfMain } from "./bench.ts";
2019-02-12 10:55:01 -05:00
2019-03-11 14:21:13 -04:00
// Basic
2019-04-24 07:41:23 -04:00
bench(function forIncrementX1e9(b: BenchmarkTimer): void {
2019-02-12 10:55:01 -05:00
b.start();
for (let i = 0; i < 1e9; i++);
b.stop();
});
// Reporting average measured time for $runs runs of func
bench({
name: "runs100ForIncrementX1e6",
runs: 100,
2019-04-24 07:41:23 -04:00
func(b): void {
2019-02-12 10:55:01 -05:00
b.start();
2019-03-04 19:53:35 -05:00
for (let i = 0; i < 1e6; i++);
2019-02-12 10:55:01 -05:00
b.stop();
}
});
// Itsabug
2019-04-24 07:41:23 -04:00
bench(function throwing(b): void {
2019-02-12 10:55:01 -05:00
b.start();
// Throws bc the timer's stop method is never called
});
// Bench control
2019-03-11 14:21:13 -04:00
runIfMain(import.meta, { skip: /throw/ });