9b0ac9ee03
Change-Id: Icfeb982a37b501b22189d87de42398c3f1516bee Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/95961 Commit-Queue: Brian Wilkerson <brianwilkerson@google.com> Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
20 lines
572 B
Dart
20 lines
572 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 'static_warning_code_test.dart';
|
|
|
|
main() {
|
|
defineReflectiveSuite(() {
|
|
defineReflectiveTests(StaticWarningCodeTest_Driver);
|
|
});
|
|
}
|
|
|
|
@reflectiveTest
|
|
class StaticWarningCodeTest_Driver extends StaticWarningCodeTest {
|
|
@override
|
|
bool get enableNewAnalysisDriver => true;
|
|
}
|