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
|
|
|
|
2021-02-18 11:06:02 +01:00
|
|
|
namespace Umbraco.Cms.Tests.Common.TestHelpers
|
2020-11-30 08:51:12 +01:00
|
|
|
{
|
|
|
|
|
public static class TestEnvironment
|
|
|
|
|
{
|
|
|
|
|
public static bool IsLinux => RuntimeInformation.IsOSPlatform(OSPlatform.Linux);
|
|
|
|
|
|
2020-12-19 08:17:35 +01:00
|
|
|
public static bool IsOSX => RuntimeInformation.IsOSPlatform(OSPlatform.OSX);
|
2020-11-30 08:51:12 +01:00
|
|
|
|
2020-12-19 08:17:35 +01:00
|
|
|
public static bool IsWindows => RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
|
2020-11-30 08:51:12 +01:00
|
|
|
}
|
|
|
|
|
}
|