Public/Get-ConnectorSyncSessionOperation.tests.ps1

BeforeAll {
    $Script:Module = Import-Module "$($PSScriptRoot)/.." -Force -PassThru
}

Describe "Get-ConnectorSyncSessionOperation" {
    It "Should throw when not connected" {
        {
            Get-ConnectorSyncSessionOperation
        } | Should -Throw
    }
}