From 139e52f3e27f85bb41261dfe8de38d0ee327fcf9 Mon Sep 17 00:00:00 2001 From: Brownstein Date: Thu, 27 Aug 2020 15:28:01 -0400 Subject: [PATCH] add new parameter to test --- Tests/Public/Invoke-ZertoMove.Tests.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/Tests/Public/Invoke-ZertoMove.Tests.ps1 b/Tests/Public/Invoke-ZertoMove.Tests.ps1 index d3b398b..efb1260 100644 --- a/Tests/Public/Invoke-ZertoMove.Tests.ps1 +++ b/Tests/Public/Invoke-ZertoMove.Tests.ps1 @@ -10,6 +10,7 @@ Describe $global:function -Tag 'Unit', 'Source', 'Built' { } $ParameterTestCases = @( + @{ParameterName = 'vpgIdentifier'; Type = 'Guid[]'; Mandatory = $true; Validation = 'NotNullOrEmpty' } @{ParameterName = 'vpgName'; Type = 'String[]'; Mandatory = $true; Validation = 'NotNullOrEmpty' } @{ParameterName = 'commitPolicy'; Type = 'String'; Mandatory = $false; Validation = 'Set' } @{ParameterName = 'commitPolicyTimeout'; Type = 'Int'; Mandatory = $false; Validation = 'Range' }