blob: bcb225d194996fa589b040640f0f82f3fede3904 [file] [log] [blame]
// Copyright (c) 2014, Google Inc. Please see the AUTHORS file for details.
// All rights reserved. Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
library benchmark_harness_test;
import 'package:benchmark_harness/benchmark_harness.dart';
import 'package:test/test.dart';
void main() {
group('benchmark_harness', () {
test('run is called', () {
MockBenchmark benchmark = MockBenchmark();
double micros = benchmark.measure();
expect(micros, isPositive);
expect(benchmark.runCount, isPositive);
});
});
}
class MockBenchmark extends BenchmarkBase {
int runCount = 0;
MockBenchmark() : super('mock benchmark');
void run() {
runCount++;
}
}