mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
21 lines
374 B
Dart
21 lines
374 B
Dart
import "third_party/unittest/unittest.dart";
|
|
import "harness.dart";
|
|
|
|
class _SkyConfig extends SimpleConfiguration {
|
|
void onDone(bool success) {
|
|
try {
|
|
super.onDone(success);
|
|
} catch (ex) {
|
|
print(ex.toString());
|
|
}
|
|
|
|
notifyTestComplete("DONE");
|
|
}
|
|
}
|
|
|
|
final _singleton = new _SkyConfig();
|
|
|
|
void initUnit() {
|
|
unittestConfiguration = _singleton;
|
|
}
|