Tests/Get-AdminsBeforeChange.Tests.ps1

<# Get-Module JBOADS | Remove-Module -Force
Push-Location ..
Import-Module JBOADS -Force
Pop-Location
$FunctionName = ($MyInvocation.MyCommand.Name).Split(".")[0]
$JsonMockData = Get-Content -Path .\JBOADS\Tests\MockedTestObjects.json -Raw
$Mocks = ConvertFrom-Json $JsonMockData
$xmlbefore = ".\JBOADS\Tests\adminbefore.xml"
 
Describe "$FunctionName Tests" {
 
    Context 'Function Output' {
        It 'should return verbose output' {
            Get-AdminsBeforeChange -before $xmlbefore -Verbose | Should -Contain 'Verbose'
        }
    }
 
}
 #>