blob: e45d4a735fcdbdf26d4106cc4ebbda2748ba0bce [file] [log] [blame]
// Copyright (c) 2020, 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:analyzer/src/lint/io.dart';
import 'package:analyzer/src/lint/linter.dart';
import 'package:linter/src/analyzer.dart';
import 'package:linter/src/cli.dart' as cli;
import 'package:test/test.dart';
import '../mocks.dart';
void main() {
group('unnecessary_lambdas', () {
final currentOut = outSink;
final collectingOut = CollectingSink();
setUp(() => outSink = collectingOut);
tearDown(() {
collectingOut.buffer.clear();
outSink = currentOut;
});
test('deferred import', () async {
await cli.runLinter([
'test/_data/unnecessary_lambdas',
'--rules=unnecessary_lambdas',
], LinterOptions());
expect(collectingOut.trim(), contains('2 files analyzed, 1 issue found'));
expect(collectingOut.trim(), contains('core.print'));
});
});
}