bench 0.2.0
bench: ^0.2.0 copied to clipboard
Metadata and test runner for Dart's `unittest` package.
example/example.dart
@Group('Example Group')
library bench.example;
import 'package:bench/bench.dart' as bench;
import 'package:bench/meta.dart';
import 'package:unittest/unittest.dart';
void main() => bench.main();
@Test('An example test case that passes.')
void testPass() {
expect(true, isTrue);
}