nerm/tests/Api/NERMFormsApi.Tests.ps1
|
# # NERM API # The NERM API accesss and modifies resources in your environment. # Version: 1.0.0 # Generated by OpenAPI Generator: https://openapi-generator.tech # Describe -tag 'PSSailpoint.NERM' -name 'NERMNERMFormsApi' { Context 'New-NERMForm' { It 'Test New-NERMForm' { #$TestResult = New-NERMForm -CreateFormRequest "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Remove-NERMFormById' { It 'Test Remove-NERMFormById' { #$TestResult = Remove-NERMFormById -Id "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Remove-NERMFormByUid' { It 'Test Remove-NERMFormByUid' { #$TestResult = Remove-NERMFormByUid -Uid "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-NERMFormById' { It 'Test Get-NERMFormById' { #$TestResult = Get-NERMFormById -Id "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-NERMFormByUid' { It 'Test Get-NERMFormByUid' { #$TestResult = Get-NERMFormByUid -Uid "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-NERMForms' { It 'Test Get-NERMForms' { #$TestResult = Get-NERMForms #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Update-NERMFormById' { It 'Test Update-NERMFormById' { #$TestResult = Update-NERMFormById -Id "TEST_VALUE" -UpdateFormByIdRequest "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Update-NERMFormByUid' { It 'Test Update-NERMFormByUid' { #$TestResult = Update-NERMFormByUid -UpdateFormByIdRequest "TEST_VALUE" -Uid "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } } |