Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

simplify process code #5171

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -381,9 +381,7 @@ private async Task TakeDumpAsync()
#endif

NotifyCrashDumpServiceIfEnabled();
using IProcess process = _processHandler.GetProcessById(_testHostProcessInformation.PID);
process.Kill();
await process.WaitForExitAsync();
await _processHandler.KillAsync(_testHostProcessInformation.PID);
_dumpFileTaken = finalDumpFileName;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,7 @@
await logger.LogInformationAsync("Logging mode: " + (syncWrite ? "synchronous" : "asynchronous"));
await logger.LogInformationAsync($"Logging level: {loggerLevel}");
await logger.LogInformationAsync($"CreateBuilderAsync entry time: {createBuilderEntryTime}");
using IProcess currentProcess = processHandler.GetCurrentProcess();
await logger.LogInformationAsync($"PID: {currentProcess.Id}");
await logger.LogInformationAsync($"PID: {processHandler.GetCurrentProcessId()}");

#if NETCOREAPP
string runtimeInformation = $"{RuntimeInformation.RuntimeIdentifier} - {RuntimeInformation.FrameworkDescription}";
Expand Down Expand Up @@ -245,8 +244,8 @@

if (environment.GetEnvironmentVariable(EnvironmentVariableConstants.TESTINGPLATFORM_WAIT_ATTACH_DEBUGGER) == "1")
{
IProcess currentProcess = systemProcess.GetCurrentProcess();
console.WriteLine($"Waiting for debugger to attach... Process Id: {currentProcess.Id}, Name: {currentProcess.Name}");
var process = systemProcess.GetCurrentProcessInfo();

Check failure on line 247 in src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build MacOS Debug)

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs#L247

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs(247,13): error IDE0008: (NETCORE_ENGINEERING_TELEMETRY=Build) Use explicit type instead of 'var' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0008)

Check failure on line 247 in src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build MacOS Debug)

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs#L247

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs(247,13): error IDE0008: (NETCORE_ENGINEERING_TELEMETRY=Build) Use explicit type instead of 'var' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0008)

Check failure on line 247 in src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build MacOS Release)

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs#L247

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs(247,13): error IDE0008: (NETCORE_ENGINEERING_TELEMETRY=Build) Use explicit type instead of 'var' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0008)

Check failure on line 247 in src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build MacOS Release)

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs#L247

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs(247,13): error IDE0008: (NETCORE_ENGINEERING_TELEMETRY=Build) Use explicit type instead of 'var' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0008)

Check failure on line 247 in src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build Linux Debug)

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs#L247

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs(247,13): error IDE0008: (NETCORE_ENGINEERING_TELEMETRY=Build) Use explicit type instead of 'var' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0008)

Check failure on line 247 in src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build Linux Debug)

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs#L247

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs(247,13): error IDE0008: (NETCORE_ENGINEERING_TELEMETRY=Build) Use explicit type instead of 'var' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0008)

Check failure on line 247 in src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build Linux Release)

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs#L247

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs(247,13): error IDE0008: (NETCORE_ENGINEERING_TELEMETRY=Build) Use explicit type instead of 'var' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0008)

Check failure on line 247 in src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build Linux Release)

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs#L247

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs(247,13): error IDE0008: (NETCORE_ENGINEERING_TELEMETRY=Build) Use explicit type instead of 'var' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0008)

Check failure on line 247 in src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs#L247

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs(247,13): error IDE0008: (NETCORE_ENGINEERING_TELEMETRY=Build) Use explicit type instead of 'var' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0008)

Check failure on line 247 in src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs#L247

src/Platform/Microsoft.Testing.Platform/Builder/TestApplication.cs(247,13): error IDE0008: (NETCORE_ENGINEERING_TELEMETRY=Build) Use explicit type instead of 'var' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0008)
console.WriteLine($"Waiting for debugger to attach... Process Id: {process.Id}, Name: {process.Name}");

while (!Debugger.IsAttached)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,14 @@ internal interface IProcess : IDisposable
/// <inheritdoc cref="System.Diagnostics.Process.Id" />
int Id { get; }

/// <inheritdoc cref="System.Diagnostics.Process.ProcessName" />
string Name { get; }

/// <inheritdoc cref="System.Diagnostics.Process.ExitCode" />
int ExitCode { get; }

/// <inheritdoc cref="System.Diagnostics.Process.HasExited" />
bool HasExited { get; }

#if NETCOREAPP
/// <inheritdoc cref="System.Diagnostics.Process.MainModule" />
IMainModule? MainModule { get; }
#else
/// <inheritdoc cref="System.Diagnostics.Process.MainModule" />
IMainModule MainModule { get; }
#endif

/// <summary>
/// Instructs the Process component to wait for the associated process to exit, or for the cancellationToken to be canceled.
/// </summary>
Task WaitForExitAsync();

/// <inheritdoc cref="System.Diagnostics.Process.WaitForExit()" />
void WaitForExit();

/// <inheritdoc cref="System.Diagnostics.Process.Kill()" />
void Kill();
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ namespace Microsoft.Testing.Platform.Helpers;

internal interface IProcessHandler
{
IProcess GetProcessById(int pid);
Task KillAsync(int id);

IProcess GetCurrentProcess();
int GetCurrentProcessId();

(int Id, string Name) GetCurrentProcessInfo();

string? GetCurrentProcessFileName();

IProcess Start(ProcessStartInfo startInfo);
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,37 +20,14 @@ public SystemProcess(Process process)

public int Id => _process.Id;

public string Name => _process.ProcessName;

public int ExitCode => _process.ExitCode;

#if NETCOREAPP
public IMainModule? MainModule
=> _process.MainModule is null
? null
: (IMainModule)new SystemMainModule(_process.MainModule);
#else
public IMainModule MainModule
=> new SystemMainModule(_process.MainModule);
#endif

private void OnProcessExited(object? sender, EventArgs e)
=> Exited?.Invoke(sender, e);

public void WaitForExit()
=> _process.WaitForExit();

public Task WaitForExitAsync()
=> _process.WaitForExitAsync();

#if NETCOREAPP
public void Kill()
=> _process.Kill(true);
#else
public void Kill()
=> _process.Kill();
#endif

public void Dispose() => _process.Dispose();
#pragma warning restore CA1416
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,30 @@
[SuppressMessage("ApiDesign", "RS0030:Do not use banned APIs", Justification = "This is the Process wrapper.")]
internal sealed class SystemProcessHandler : IProcessHandler
{
#pragma warning disable CA1416 // Validate platform compatibility
public IProcess GetCurrentProcess() => new SystemProcess(Process.GetCurrentProcess());
public async Task KillAsync(int id)
{
using var process = Process.GetProcessById(id);

Check failure on line 13 in src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build MacOS Release)

src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs#L13

src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs(13,29): error CA1416: (NETCORE_ENGINEERING_TELEMETRY=Build) This call site is reachable on all platforms. 'Process.GetProcessById(int)' is unsupported on: 'browser'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)

Check failure on line 13 in src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build Linux Debug)

src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs#L13

src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs(13,29): error CA1416: (NETCORE_ENGINEERING_TELEMETRY=Build) This call site is reachable on all platforms. 'Process.GetProcessById(int)' is unsupported on: 'browser'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)

Check failure on line 13 in src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build Linux Release)

src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs#L13

src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs(13,29): error CA1416: (NETCORE_ENGINEERING_TELEMETRY=Build) This call site is reachable on all platforms. 'Process.GetProcessById(int)' is unsupported on: 'browser'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)
process.Kill();
await process.WaitForExitAsync();

Check failure on line 15 in src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build MacOS Release)

src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs#L15

src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs(15,15): error CA1416: (NETCORE_ENGINEERING_TELEMETRY=Build) This call site is reachable on all platforms. 'Process.WaitForExitAsync(CancellationToken)' is unsupported on: 'browser'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)

Check failure on line 15 in src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build Linux Debug)

src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs#L15

src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs(15,15): error CA1416: (NETCORE_ENGINEERING_TELEMETRY=Build) This call site is reachable on all platforms. 'Process.WaitForExitAsync(CancellationToken)' is unsupported on: 'browser'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)

Check failure on line 15 in src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build Linux Release)

src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs#L15

src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs(15,15): error CA1416: (NETCORE_ENGINEERING_TELEMETRY=Build) This call site is reachable on all platforms. 'Process.WaitForExitAsync(CancellationToken)' is unsupported on: 'browser'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)
}

public int GetCurrentProcessId()
{
using var process = Process.GetCurrentProcess();

Check failure on line 20 in src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build MacOS Debug)

src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs#L20

src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs(20,29): error CA1416: (NETCORE_ENGINEERING_TELEMETRY=Build) This call site is reachable on all platforms. 'Process.GetCurrentProcess()' is unsupported on: 'browser'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)
return process.Id;

Check failure on line 21 in src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build MacOS Debug)

src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs#L21

src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs(21,16): error CA1416: (NETCORE_ENGINEERING_TELEMETRY=Build) This call site is reachable on all platforms. 'Process.Id' is unsupported on: 'browser'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)

Check failure on line 21 in src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx

src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs#L21

src/Platform/Microsoft.Testing.Platform/Helpers/System/SystemProcessHandler.cs(21,16): error CA1416: (NETCORE_ENGINEERING_TELEMETRY=Build) This call site is reachable on all platforms. 'Process.Id' is unsupported on: 'browser'. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1416)
}

public IProcess GetProcessById(int pid) => new SystemProcess(Process.GetProcessById(pid));
public (int Id, string Name) GetCurrentProcessInfo()
{
using var process = Process.GetCurrentProcess();
return (process.Id, process.ProcessName);
}

public string? GetCurrentProcessFileName()
{
using var process = Process.GetCurrentProcess();
return process.MainModule?.FileName;
}

public IProcess Start(ProcessStartInfo startInfo)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ private async Task<object> HandleRequestCoreAsync(RequestMessage message, RpcInv

INamedFeatureCapability? namedFeatureCapability = ServiceProvider.GetTestFrameworkCapabilities().GetCapability<INamedFeatureCapability>();
return new InitializeResponseArgs(
ProcessId: ServiceProvider.GetProcessHandler().GetCurrentProcess().Id,
ProcessId: ServiceProvider.GetProcessHandler().GetCurrentProcessId(),
ServerInfo: new ServerInfo("test-anywhere", Version: ProtocolVersion),
Capabilities: new ServerCapabilities(
new ServerTestingCapabilities(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -563,9 +563,8 @@ await LogTestHostCreatedAsync(
await logger.LogDebugAsync($"Connected to named pipe '{pipeName}'");

// Send the PID
using IProcess currentProcess = processHandler.GetCurrentProcess();
await client.RequestReplyAsync<TestHostProcessPIDRequest, VoidResponse>(
new TestHostProcessPIDRequest(currentProcess.Id),
new TestHostProcessPIDRequest(processHandler.GetCurrentProcessId()),
testApplicationCancellationTokenSource.CancellationToken);
return client;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@ protected override async Task<int> InternalRunAsync()
IConfiguration configuration = ServiceProvider.GetConfiguration();
try
{
using IProcess currentProcess = process.GetCurrentProcess();
int currentPID = currentProcess.Id;
int currentPID = process.GetCurrentProcessId();
string processIdString = currentPID.ToString(CultureInfo.InvariantCulture);

ExecutableInfo executableInfo = testApplicationModuleInfo.GetCurrentExecutableInfo();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public async Task<bool> IsCompatibleProtocolAsync(string hostType)
string supportedProtocolVersions = ProtocolConstants.Version;
HandshakeMessage handshakeMessage = new(new Dictionary<byte, string>()
{
{ HandshakeMessagePropertyNames.PID, _processHandler.GetCurrentProcess().Id.ToString(CultureInfo.InvariantCulture) },
{ HandshakeMessagePropertyNames.PID, _processHandler.GetCurrentProcessId().ToString(CultureInfo.InvariantCulture) },
{ HandshakeMessagePropertyNames.Architecture, RuntimeInformation.ProcessArchitecture.ToString() },
{ HandshakeMessagePropertyNames.Framework, RuntimeInformation.FrameworkDescription },
{ HandshakeMessagePropertyNames.OS, RuntimeInformation.OSDescription },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public async Task<bool> ConnectAsync()

var requestMessage = (RequestMessage)message;
var responseObject = new InitializeResponseArgs(
ProcessId: _processHandler.GetCurrentProcess().Id,
ProcessId: _processHandler.GetCurrentProcessId(),
ServerInfo: new ServerInfo("test-anywhere", Version: ServerTestHost.ProtocolVersion),
Capabilities: new ServerCapabilities(
new ServerTestingCapabilities(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,7 @@
}
#else
{
using IProcess currentProcess = process.GetCurrentProcess();
return currentProcess.MainModule.FileName;
return process.GetCurrentProcessFileName();

Check failure on line 97 in src/Platform/Microsoft.Testing.Platform/Services/CurrentTestApplicationModuleInfo.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build MacOS Debug)

src/Platform/Microsoft.Testing.Platform/Services/CurrentTestApplicationModuleInfo.cs#L97

src/Platform/Microsoft.Testing.Platform/Services/CurrentTestApplicationModuleInfo.cs(97,9): error IDE0022: (NETCORE_ENGINEERING_TELEMETRY=Build) Use expression body for method (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0022)

Check failure on line 97 in src/Platform/Microsoft.Testing.Platform/Services/CurrentTestApplicationModuleInfo.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build MacOS Release)

src/Platform/Microsoft.Testing.Platform/Services/CurrentTestApplicationModuleInfo.cs#L97

src/Platform/Microsoft.Testing.Platform/Services/CurrentTestApplicationModuleInfo.cs(97,9): error IDE0022: (NETCORE_ENGINEERING_TELEMETRY=Build) Use expression body for method (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0022)

Check failure on line 97 in src/Platform/Microsoft.Testing.Platform/Services/CurrentTestApplicationModuleInfo.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build Linux Debug)

src/Platform/Microsoft.Testing.Platform/Services/CurrentTestApplicationModuleInfo.cs#L97

src/Platform/Microsoft.Testing.Platform/Services/CurrentTestApplicationModuleInfo.cs(97,9): error IDE0022: (NETCORE_ENGINEERING_TELEMETRY=Build) Use expression body for method (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0022)

Check failure on line 97 in src/Platform/Microsoft.Testing.Platform/Services/CurrentTestApplicationModuleInfo.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx (Build Linux Release)

src/Platform/Microsoft.Testing.Platform/Services/CurrentTestApplicationModuleInfo.cs#L97

src/Platform/Microsoft.Testing.Platform/Services/CurrentTestApplicationModuleInfo.cs(97,9): error IDE0022: (NETCORE_ENGINEERING_TELEMETRY=Build) Use expression body for method (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0022)

Check failure on line 97 in src/Platform/Microsoft.Testing.Platform/Services/CurrentTestApplicationModuleInfo.cs

View check run for this annotation

Azure Pipelines / microsoft.testfx

src/Platform/Microsoft.Testing.Platform/Services/CurrentTestApplicationModuleInfo.cs#L97

src/Platform/Microsoft.Testing.Platform/Services/CurrentTestApplicationModuleInfo.cs(97,9): error IDE0022: (NETCORE_ENGINEERING_TELEMETRY=Build) Use expression body for method (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0022)
}
#endif

Expand Down
Loading