mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

This patch makes `flutter start` work without a clone of the engine git repository. Making this work pulled a relatively large refactor of how the commands interact with application packages and devices. Now commands that want to interact with application packages or devices inherit from a common base class that holds stores of those objects as members. In production, the commands download and connect to devices based on the build configuration stored on the FlutterCommandRunner. In testing, these fields are used to mock out the real application package and devices.
31 lines
942 B
Dart
31 lines
942 B
Dart
// Copyright 2015 The Chromium Authors. 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:sky_tools/src/device.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
main() => defineTests();
|
|
|
|
defineTests() {
|
|
group('android_device', () {
|
|
test('uses the correct default ID', () {
|
|
AndroidDevice android = new AndroidDevice();
|
|
expect(android.id, equals(AndroidDevice.defaultDeviceID));
|
|
});
|
|
|
|
test('stores the requested id', () {
|
|
String deviceId = '1234';
|
|
AndroidDevice android = new AndroidDevice(id: deviceId);
|
|
expect(android.id, equals(deviceId));
|
|
});
|
|
|
|
test('correctly creates only one of each requested device id', () {
|
|
String deviceID = '1234';
|
|
AndroidDevice a1 = new AndroidDevice(id: deviceID);
|
|
AndroidDevice a2 = new AndroidDevice(id: deviceID);
|
|
expect(a1, equals(a2));
|
|
});
|
|
});
|
|
}
|