PowerShell/test/powershell/Add-Type.Tests.ps1

6 lines
169 B
PowerShell
Raw Normal View History

Describe "Add-Type" {
It "Should not throw given a simple class definition" {
{ Add-Type -TypeDefinition "public static class foo { }" } | Should Not Throw
}
}