efa2303c64
BUG= R=vsm@google.com Review URL: https://codereview.chromium.org/1930043002 .
12 lines
233 B
Dart
12 lines
233 B
Dart
import 'dart:async';
|
|
import 'package:unittest/unittest.dart';
|
|
|
|
main(message, replyTo) {
|
|
var command = message.first;
|
|
expect(command, 'START');
|
|
new Timer(const Duration(milliseconds: 10), () {
|
|
replyTo.send('DONE');
|
|
});
|
|
}
|
|
|