6d93a1766b
To ensure that the initializer is called before any other code. This is as close to a global init hook as I can find.
17 lines
300 B
C#
17 lines
300 B
C#
using Xunit;
|
|
using System;
|
|
using System.Management.Automation;
|
|
|
|
namespace PSTests
|
|
{
|
|
[Collection("AssemblyLoadContext")]
|
|
public static class UtilsTests
|
|
{
|
|
[Fact]
|
|
public static void TestIsWinPEHost()
|
|
{
|
|
Assert.False(Utils.IsWinPEHost());
|
|
}
|
|
}
|
|
}
|