bbebf2f76a
- Pester source code moved to `test/Pester`, deleted `ext-src`. - Pester tests (.ps1 files) moved to `test/powershell` - xUnit tests (.cs files) moved to `test/csharp` - Third-party script test moved to `test/shebang`
17 lines
341 B
C#
17 lines
341 B
C#
using Xunit;
|
|
using System;
|
|
using System.Management.Automation;
|
|
|
|
namespace PSTests
|
|
{
|
|
public static class PSTypeExtensionsTests
|
|
{
|
|
[Fact]
|
|
public static void TestIsComObject()
|
|
{
|
|
// It just needs an arbitrary type
|
|
Assert.False(PSTypeExtensions.IsComObject(42.GetType()));
|
|
}
|
|
}
|
|
}
|