PowerShell/test/csharp/test_Binders.cs
Andrew Schwartzmeyer bbebf2f76a Reorganize tests
- 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`
2016-01-14 17:00:06 -08:00

16 lines
346 B
C#

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