sort_constructors_first (#22575)
diff --git a/packages/flutter_tools/test/commands/doctor_test.dart b/packages/flutter_tools/test/commands/doctor_test.dart
index 7e37463..ea49e34 100644
--- a/packages/flutter_tools/test/commands/doctor_test.dart
+++ b/packages/flutter_tools/test/commands/doctor_test.dart
@@ -510,18 +510,17 @@
/// A doctor that takes any two validators. Used to check behavior when
/// merging ValidationTypes (installed, missing, partial).
class FakeSmallGroupDoctor extends Doctor {
- List<DoctorValidator> _validators;
FakeSmallGroupDoctor(DoctorValidator val1, DoctorValidator val2) {
_validators = <DoctorValidator>[GroupedValidator(<DoctorValidator>[val1, val2])];
}
+
+ List<DoctorValidator> _validators;
+
@override
List<DoctorValidator> get validators => _validators;
}
class VsCodeValidatorTestTargets extends VsCodeValidator {
- static final String validInstall = fs.path.join('test', 'data', 'vscode', 'application');
- static final String validExtensions = fs.path.join('test', 'data', 'vscode', 'extensions');
- static final String missingExtensions = fs.path.join('test', 'data', 'vscode', 'notExtensions');
VsCodeValidatorTestTargets._(String installDirectory, String extensionDirectory, {String edition})
: super(VsCode.fromDirectory(installDirectory, extensionDirectory, edition: edition));
@@ -533,4 +532,8 @@
static VsCodeValidatorTestTargets get installedWithoutExtension =>
VsCodeValidatorTestTargets._(validInstall, missingExtensions);
+
+ static final String validInstall = fs.path.join('test', 'data', 'vscode', 'application');
+ static final String validExtensions = fs.path.join('test', 'data', 'vscode', 'extensions');
+ static final String missingExtensions = fs.path.join('test', 'data', 'vscode', 'notExtensions');
}
diff --git a/packages/flutter_tools/test/dart/pub_get_test.dart b/packages/flutter_tools/test/dart/pub_get_test.dart
index 16e23f3..ec4773f 100644
--- a/packages/flutter_tools/test/dart/pub_get_test.dart
+++ b/packages/flutter_tools/test/dart/pub_get_test.dart
@@ -251,13 +251,13 @@
}
class MockDirectory implements Directory {
- static bool findCache = false;
-
MockDirectory(this.path);
@override
final String path;
+ static bool findCache = false;
+
@override
bool existsSync() => findCache && path.endsWith('.pub-cache');
diff --git a/packages/flutter_tools/test/devfs_test.dart b/packages/flutter_tools/test/devfs_test.dart
index c834d02..d3c72bc 100644
--- a/packages/flutter_tools/test/devfs_test.dart
+++ b/packages/flutter_tools/test/devfs_test.dart
@@ -424,14 +424,14 @@
}
class MockVMService extends BasicMock implements VMService {
- Uri _httpAddress;
- HttpServer _server;
- MockVM _vm;
-
MockVMService() {
_vm = MockVM(this);
}
+ Uri _httpAddress;
+ HttpServer _server;
+ MockVM _vm;
+
@override
Uri get httpAddress => _httpAddress;
@@ -468,14 +468,14 @@
}
class MockVM implements VM {
+ MockVM(this._service);
+
final MockVMService _service;
final Uri _baseUri = Uri.parse('file:///tmp/devfs/test');
bool _devFSExists = false;
static const int kFileSystemAlreadyExists = 1001;
- MockVM(this._service);
-
@override
Future<Map<String, dynamic>> createDevFS(String fsName) async {
_service.messages.add('create $fsName');
diff --git a/packages/flutter_tools/test/device_test.dart b/packages/flutter_tools/test/device_test.dart
index 286ee49..db32c3d 100644
--- a/packages/flutter_tools/test/device_test.dart
+++ b/packages/flutter_tools/test/device_test.dart
@@ -39,10 +39,10 @@
}
class TestDeviceManager extends DeviceManager {
- final List<Device> allDevices;
-
TestDeviceManager(this.allDevices);
+ final List<Device> allDevices;
+
@override
Stream<Device> getAllConnectedDevices() {
return Stream<Device>.fromIterable(allDevices);
@@ -50,11 +50,11 @@
}
class _MockDevice extends Device {
+ _MockDevice(this.name, String id) : super(id);
+
@override
final String name;
- _MockDevice(this.name, String id) : super(id);
-
@override
void noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
}
diff --git a/packages/flutter_tools/test/emulator_test.dart b/packages/flutter_tools/test/emulator_test.dart
index 01c7d4c..0bb1499 100644
--- a/packages/flutter_tools/test/emulator_test.dart
+++ b/packages/flutter_tools/test/emulator_test.dart
@@ -152,10 +152,10 @@
}
class TestEmulatorManager extends EmulatorManager {
- final List<Emulator> allEmulators;
-
TestEmulatorManager(this.allEmulators);
+ final List<Emulator> allEmulators;
+
@override
Future<List<Emulator>> getAllAvailableEmulators() {
return Future<List<Emulator>>.value(allEmulators);
diff --git a/packages/flutter_tools/test/hot_test.dart b/packages/flutter_tools/test/hot_test.dart
index 9d92cd2..0094422 100644
--- a/packages/flutter_tools/test/hot_test.dart
+++ b/packages/flutter_tools/test/hot_test.dart
@@ -135,10 +135,10 @@
}
class TestHotRunnerConfig extends HotRunnerConfig {
- bool successfulSetup;
-
TestHotRunnerConfig({@required this.successfulSetup});
+ bool successfulSetup;
+
@override
Future<bool> setupHotRestart() async {
return successfulSetup;
diff --git a/packages/flutter_tools/test/protocol_discovery_test.dart b/packages/flutter_tools/test/protocol_discovery_test.dart
index 0bd6606..d8499f2 100644
--- a/packages/flutter_tools/test/protocol_discovery_test.dart
+++ b/packages/flutter_tools/test/protocol_discovery_test.dart
@@ -223,9 +223,10 @@
}
class MockPortForwarder extends DevicePortForwarder {
- final int availablePort;
MockPortForwarder([this.availablePort]);
+ final int availablePort;
+
@override
Future<int> forward(int devicePort, {int hostPort}) async {
hostPort ??= 0;
diff --git a/packages/flutter_tools/test/src/mocks.dart b/packages/flutter_tools/test/src/mocks.dart
index 5bcb4bc..eec77f1 100644
--- a/packages/flutter_tools/test/src/mocks.dart
+++ b/packages/flutter_tools/test/src/mocks.dart
@@ -308,12 +308,12 @@
}
class MockPollingDeviceDiscovery extends PollingDeviceDiscovery {
+ MockPollingDeviceDiscovery() : super('mock');
+
final List<Device> _devices = <Device>[];
final StreamController<Device> _onAddedController = StreamController<Device>.broadcast();
final StreamController<Device> _onRemovedController = StreamController<Device>.broadcast();
- MockPollingDeviceDiscovery() : super('mock');
-
@override
Future<List<Device>> pollingGetDevices() async => _devices;