run_test.dart 657 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
// Copyright 2016 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:flutter_tools/src/commands/run.dart';
import 'package:test/test.dart';

import 'src/common.dart';
import 'src/context.dart';
import 'src/mocks.dart';

12
void main() {
13
  group('run', () {
14
    testUsingContext('fails when target not found', () {
15 16 17
      RunCommand command = new RunCommand();
      applyMocksToCommand(command);
      return createTestCommandRunner(command).run(<String>['run', '-t', 'abc123']).then((int code) {
18
        expect(code, 1);
19 20 21 22
      });
    });
  });
}