PowerShell/src/ps_test/test_CorePsPlatform.cs

14 lines
242 B
C#
Raw Normal View History

using Xunit;
using System;
namespace PSTests
{
public static class PlatformTests
{
public static void testIsLinux()
{
Assert.Equal(System.Management.Automation.Platform.IsLinux(), true);
}
}
}