2020-12-19 08:17:35 +01:00
|
|
|
// Copyright (c) Umbraco.
|
|
|
|
|
// See LICENSE for more details.
|
|
|
|
|
|
|
|
|
|
using System.Runtime.InteropServices;
|
2020-11-30 08:51:12 +01:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
namespace Umbraco.Cms.Tests.Common.TestHelpers;
|
|
|
|
|
|
|
|
|
|
public static class TestEnvironment
|
2020-11-30 08:51:12 +01:00
|
|
|
{
|
2022-06-21 08:09:38 +02:00
|
|
|
public static bool IsLinux => RuntimeInformation.IsOSPlatform(OSPlatform.Linux);
|
2020-11-30 08:51:12 +01:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
public static bool IsOSX => RuntimeInformation.IsOSPlatform(OSPlatform.OSX);
|
2020-11-30 08:51:12 +01:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
public static bool IsWindows => RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
|
2020-11-30 08:51:12 +01:00
|
|
|
}
|