PSCredentialStore/tests/Certificate/50_New-CSCertAttribute.Tests.ps1

8 lines
286 B
PowerShell
Raw Normal View History

2019-04-05 13:31:30 +02:00
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
}
}
}