Increase code coverage #22

Merged
OCram85 merged 34 commits from dev into master 2018-03-21 12:16:09 +01:00
Showing only changes of commit 7ab662c860 - Show all commits

View File

@ -79,15 +79,14 @@ Describe "New-CredentialStoreItem" {
return [PSCredential]::new($UserName, $Password)
}
}
It "Test missing Credential" {
$tmpCS = 'C:\CredentialStore.json'
New-CredentialStoreItem -Path $tmpCs -Shared -RemoteHost 'foobar3'
$writtenItem = Get-CredentialStoreItem -Path $tmpCS -Shared -RemoteHost 'foobar3'
$writtenItem.UserName | Should -Be "myUser"
}
}
Context "General Exception handling" {
}
Context "General Exception handling" {
Mock Test-CredentialStore {return $false}
$UserName = 'myUser'
$Password = ConvertTo-SecureString -String "mypasswd" -AsPlainText -Force
@ -98,4 +97,6 @@ Context "General Exception handling" {
It "Missing CredentialStore should throw" {
New-CredentialStoreItem -Path 'C:\missingStore.json' -RemoteHost 'notrelevant' | Should -Throw "Could not add anything"
}
}
}