nerm/tests/Api/NERMFormAttributesApi.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 'NERMNERMFormAttributesApi' {
    Context 'New-NERMFormAttribute' {
        It 'Test New-NERMFormAttribute' {
            #$TestResult = New-NERMFormAttribute -CreateFormAttributeRequest "TEST_VALUE"
            #$TestResult | Should -BeOfType TODO
            #$TestResult.property | Should -Be 0
        }
    }

    Context 'Remove-NERMFormAttributeById' {
        It 'Test Remove-NERMFormAttributeById' {
            #$TestResult = Remove-NERMFormAttributeById -Id "TEST_VALUE"
            #$TestResult | Should -BeOfType TODO
            #$TestResult.property | Should -Be 0
        }
    }

    Context 'Remove-NERMFormAttributeByUid' {
        It 'Test Remove-NERMFormAttributeByUid' {
            #$TestResult = Remove-NERMFormAttributeByUid -Uid "TEST_VALUE"
            #$TestResult | Should -BeOfType TODO
            #$TestResult.property | Should -Be 0
        }
    }

    Context 'Get-NERMFormAttributeById' {
        It 'Test Get-NERMFormAttributeById' {
            #$TestResult = Get-NERMFormAttributeById -Id "TEST_VALUE"
            #$TestResult | Should -BeOfType TODO
            #$TestResult.property | Should -Be 0
        }
    }

    Context 'Get-NERMFormAttributeByUid' {
        It 'Test Get-NERMFormAttributeByUid' {
            #$TestResult = Get-NERMFormAttributeByUid -Uid "TEST_VALUE"
            #$TestResult | Should -BeOfType TODO
            #$TestResult.property | Should -Be 0
        }
    }

    Context 'Get-NERMFormAttributes' {
        It 'Test Get-NERMFormAttributes' {
            #$TestResult = Get-NERMFormAttributes
            #$TestResult | Should -BeOfType TODO
            #$TestResult.property | Should -Be 0
        }
    }

    Context 'Update-NERMFormAttributeById' {
        It 'Test Update-NERMFormAttributeById' {
            #$TestResult = Update-NERMFormAttributeById -Id "TEST_VALUE" -CreateFormAttributeRequest "TEST_VALUE"
            #$TestResult | Should -BeOfType TODO
            #$TestResult.property | Should -Be 0
        }
    }

    Context 'Update-NERMFormAttributeByUid' {
        It 'Test Update-NERMFormAttributeByUid' {
            #$TestResult = Update-NERMFormAttributeByUid -CreateFormAttributeRequest "TEST_VALUE" -Uid "TEST_VALUE"
            #$TestResult | Should -BeOfType TODO
            #$TestResult.property | Should -Be 0
        }
    }

}