PowerShell/test/csharp/test_ExtensionMethods.cs

18 lines
394 B
C#
Raw Normal View History

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using Xunit;
using System;
using System.Management.Automation;
namespace PSTests.Parallel
{
public static class PSTypeExtensionsTests
{
[Fact]
public static void TestIsNumeric()
{
Assert.True(PSTypeExtensions.IsNumeric(42.GetType()));
}
}
}