blob: 4f8951c8142b2358a7082ce177170fd61e84de5e [file] [log] [blame]
library fixed_unittest;
import 'package:unittest/unittest.dart';
export 'package:unittest/unittest.dart';
// Jasmine-like syntax for unittest.
void describe(String spec, TestFunction body) => group(spec, body);
void it(String spec, TestFunction body) => test(spec, body);