Add Unit Test for Export-FormatData
This commit is contained in:
parent
4017aeb6fb
commit
f0de4321c8
@ -1,3 +1,19 @@
|
||||
Describe "Export-FormatData DRT Unit Tests" -Tags DRT{
|
||||
It "Test basic functionality" {
|
||||
$fd = Get-FormatData
|
||||
$tempFile = [io.path]::GetTempFileName()
|
||||
$results = Export-FormatData -InputObject $fd[0] -Path $tempFile
|
||||
$content = Get-Content $tempFile
|
||||
$formatViewDefinition = $fd[0].FormatViewDefinition
|
||||
$typeName = $fd[0].TypeName
|
||||
$content.Contains($typeName) | Should Be $true
|
||||
for ($i = 0; $i -lt $formatViewDefinition.Count;$i++)
|
||||
{
|
||||
$content.Contains($formatViewDefinition[$i].Name) | Should Be $true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Describe "Export-FormatData" {
|
||||
|
||||
Context "Check Export-FormatData can be called validly." {
|
||||
|
Loading…
Reference in New Issue
Block a user