blob: e60623840a0fd49d4fc1ab7216ea48f46810e1be [file] [log] [blame]
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// @dart = 2.8
import 'package:file/memory.dart';
import 'package:flutter_tools/src/base/file_system.dart';
import 'package:flutter_tools/src/base/platform.dart';
import 'package:flutter_tools/src/vscode/vscode.dart';
import '../../src/common.dart';
void main() {
testWithoutContext('VsCode search locations on windows supports an empty environment', () {
final FileSystem fileSystem = MemoryFileSystem.test(style: FileSystemStyle.windows);
final Platform platform = FakePlatform(
operatingSystem: 'windows',
environment: <String, String>{},
);
expect(VsCode.allInstalled(fileSystem, platform), isEmpty);
});
}