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

Also update tests to be compatible with the presence of iOS and add tests for list and install.
38 lines
1.1 KiB
Dart
38 lines
1.1 KiB
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.
|
|
|
|
library start_test;
|
|
|
|
import 'package:args/command_runner.dart';
|
|
import 'package:mockito/mockito.dart';
|
|
import 'package:sky_tools/src/start.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
import 'src/common.dart';
|
|
|
|
main() => defineTests();
|
|
|
|
defineTests() {
|
|
group('start', () {
|
|
test('returns 0 when Android is connected and ready to be started', () {
|
|
applicationPackageSetup();
|
|
|
|
MockAndroidDevice android = new MockAndroidDevice();
|
|
when(android.isConnected()).thenReturn(true);
|
|
when(android.installApp(any)).thenReturn(true);
|
|
when(android.stop(any)).thenReturn(true);
|
|
|
|
MockIOSDevice ios = new MockIOSDevice();
|
|
when(ios.isConnected()).thenReturn(false);
|
|
when(ios.installApp(any)).thenReturn(false);
|
|
|
|
StartCommand command = new StartCommand(android: android, ios: ios);
|
|
|
|
CommandRunner runner = new CommandRunner('test_flutter', '')
|
|
..addCommand(command);
|
|
runner.run(['start']).then((int code) => expect(code, equals(0)));
|
|
});
|
|
});
|
|
}
|