2015-07-29 13:54:42 +00:00
|
|
|
using Xunit;
|
|
|
|
using System;
|
|
|
|
using System.Management.Automation;
|
|
|
|
|
|
|
|
namespace PSTests
|
|
|
|
{
|
2016-03-18 01:15:39 +00:00
|
|
|
[Collection("AssemblyLoadContext")]
|
2015-07-29 13:54:42 +00:00
|
|
|
public static class UtilsTests
|
|
|
|
{
|
|
|
|
[Fact]
|
|
|
|
public static void TestIsWinPEHost()
|
|
|
|
{
|
|
|
|
Assert.False(Utils.IsWinPEHost());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|