rdt-client/server/RdtClient.Service.Test/Helpers/OSHelper.cs
omgbeez 8664993ff6 fix(tests): Fix tests to work on macos (and linux, and windows)
Windows is the odd OS out here, adjusting logic for test data.
2026-04-20 19:44:07 -04:00

8 lines
210 B
C#

using System.Runtime.InteropServices;
namespace RdtClient.Service.Test.Helpers;
public static class OSHelper
{
public static Boolean IsWindows => RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
}