f40ff153a9
Based on Devon's change at: https://dart-review.googlesource.com/c/sdk/+/67090 Change-Id: I80b7943826e248bf37d9bbbb769330d24b0dd6ae Reviewed-on: https://dart-review.googlesource.com/70160 Reviewed-by: Brian Wilkerson <brianwilkerson@google.com> Reviewed-by: Devon Carew <devoncarew@google.com> Commit-Queue: Janice Collins <jcollins@google.com>
20 lines
548 B
Dart
20 lines
548 B
Dart
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
import 'package:test_reflective_loader/test_reflective_loader.dart';
|
|
|
|
import 'invalid_code_test.dart';
|
|
|
|
main() {
|
|
defineReflectiveSuite(() {
|
|
defineReflectiveTests(InvalidCodeTest_Driver);
|
|
});
|
|
}
|
|
|
|
@reflectiveTest
|
|
class InvalidCodeTest_Driver extends InvalidCodeTest {
|
|
@override
|
|
bool get enableNewAnalysisDriver => true;
|
|
}
|