PowerShell/test/csharp/test_Binders.cs

18 lines
386 B
C#
Raw Normal View History

using Xunit;
using System;
using System.Management.Automation.Language;
namespace PSTests
{
[Collection("AssemblyLoadContext")]
public static class PSEnumerableBinderTests
{
[Fact]
public static void TestIsComObject()
{
// It just needs an arbitrary object
Assert.False(PSEnumerableBinder.IsComObject(42));
}
}
}