PSCredentialStore/tests/Certificate/50_New-CSCertAttribute.Tests.ps1
2019-04-08 15:56:27 +02:00

8 lines
286 B
PowerShell

Describe "New-CSCertAttribute" {
Context "Basis Tests" {
It "Test1: Should not throw " {
{ New-CSCertAttribute -Country 'DE' -State 'BW' -City 'KA' -Organization 'IT' -OrganizationalUnitName'' -CommonName 'Mycert' } | Should -Not -Throw
}
}
}