nerm/tests/Api/NERMPageContentTranslationsApi.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 'NERMNERMPageContentTranslationsApi' { Context 'New-NERMPageContentTranslation' { It 'Test New-NERMPageContentTranslation' { #$TestResult = New-NERMPageContentTranslation -CreatePageContentTranslationRequest "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Remove-NERMPageContentTranslationById' { It 'Test Remove-NERMPageContentTranslationById' { #$TestResult = Remove-NERMPageContentTranslationById -Id "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Remove-NERMPageContentTranslationByUid' { It 'Test Remove-NERMPageContentTranslationByUid' { #$TestResult = Remove-NERMPageContentTranslationByUid -Id "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-NERMPageContentTranslation' { It 'Test Get-NERMPageContentTranslation' { #$TestResult = Get-NERMPageContentTranslation #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-NERMPageContentTranslationById' { It 'Test Get-NERMPageContentTranslationById' { #$TestResult = Get-NERMPageContentTranslationById -Id "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Get-NERMPageContentTranslationByUid' { It 'Test Get-NERMPageContentTranslationByUid' { #$TestResult = Get-NERMPageContentTranslationByUid -Uid "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Update-NERMPageContentTranslationById' { It 'Test Update-NERMPageContentTranslationById' { #$TestResult = Update-NERMPageContentTranslationById -Id "TEST_VALUE" -UpdatePageContentTranslationByIdRequest "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } Context 'Update-NERMPageContentTranslationByUid' { It 'Test Update-NERMPageContentTranslationByUid' { #$TestResult = Update-NERMPageContentTranslationByUid -UpdatePageContentTranslationByIdRequest "TEST_VALUE" -Uid "TEST_VALUE" #$TestResult | Should -BeOfType TODO #$TestResult.property | Should -Be 0 } } } |