blob: f19bce25aab86d77a799f01db8139474ac739bf6 [file] [log] [blame]
import 'package:test/test.dart';
import 'package:{{projectName}}/{{projectName}}.dart';
void main() {
test('invoke native function', () {
// Tests are run in debug mode.
expect(sum(24, 18), 1042);
});
test('invoke async native callback', () async {
expect(await sumAsync(24, 18), 42);
});
}