forked from microsoft/testfx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommandLineOptionsProviderCache.cs
37 lines (25 loc) · 1.65 KB
/
CommandLineOptionsProviderCache.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Microsoft.Testing.Platform.Extensions;
using Microsoft.Testing.Platform.Extensions.CommandLine;
namespace Microsoft.Testing.Platform.CommandLine;
internal struct CommandLineOptionsProviderCache(ICommandLineOptionsProvider commandLineOptionsProvider) : ICommandLineOptionsProvider
{
private readonly ICommandLineOptionsProvider _commandLineOptionsProvider = commandLineOptionsProvider;
private CommandLineOption[]? _commandLineOptions;
public readonly string Uid => _commandLineOptionsProvider.Uid;
public readonly string Version => _commandLineOptionsProvider.Version;
public readonly string DisplayName => _commandLineOptionsProvider.DisplayName;
public readonly string Description => _commandLineOptionsProvider.Description;
public IReadOnlyCollection<CommandLineOption> GetCommandLineOptions()
{
_commandLineOptions ??= _commandLineOptionsProvider.GetCommandLineOptions().ToArray();
return _commandLineOptions;
}
public readonly Task<bool> IsEnabledAsync()
=> _commandLineOptionsProvider.IsEnabledAsync();
public readonly Task<ValidationResult> ValidateCommandLineOptionsAsync(ICommandLineOptions commandLineOptions)
=> _commandLineOptionsProvider.ValidateCommandLineOptionsAsync(commandLineOptions);
public readonly Task<ValidationResult> ValidateOptionArgumentsAsync(CommandLineOption commandOption, string[] arguments)
=> _commandLineOptionsProvider.ValidateOptionArgumentsAsync(commandOption, arguments);
}