/// <summary>
        ///  C'tor for GetIntuneiOSMAMPolicyGroupCmdletTests class.
        /// </summary>
        public GetIntuneiOSMAMPolicyGroupCmdletTests()
        {
            commandRuntimeMock = new Mock<ICommandRuntime>();
            intuneClientMock = new Mock<IIntuneResourceManagementClient>();

            cmdlet = new GetIntuneiOSMAMPolicyGroupCmdlet();
            this.cmdlet.CommandRuntime = commandRuntimeMock.Object;
            this.cmdlet.IntuneClient = intuneClientMock.Object;

            // Set-up mock Location and mock the underlying service API method       
            AzureOperationResponse<Location> resLocation = new AzureOperationResponse<Location>();
            expectedLocation = new Location("mockHostName");
            resLocation.Body = expectedLocation;

            intuneClientMock.Setup(f => f.GetLocationByHostNameWithHttpMessagesAsync(It.IsAny<Dictionary<string, List<string>>>(), It.IsAny<CancellationToken>()))
                .Returns(Task.FromResult(resLocation));
        }
        /// <summary>
        ///  C'tor for GetIntuneiOSMAMPolicyGroupCmdletTests class.
        /// </summary>
        public GetIntuneiOSMAMPolicyGroupCmdletTests()
        {
            commandRuntimeMock = new Mock <ICommandRuntime>();
            intuneClientMock   = new Mock <IIntuneResourceManagementClient>();

            cmdlet = new GetIntuneiOSMAMPolicyGroupCmdlet();
            this.cmdlet.CommandRuntime = commandRuntimeMock.Object;
            this.cmdlet.IntuneClient   = intuneClientMock.Object;

            // Set-up mock Location and mock the underlying service API method
            AzureOperationResponse <Location> resLocation = new AzureOperationResponse <Location>();

            expectedLocation = new Location("mockHostName");
            resLocation.Body = expectedLocation;

            intuneClientMock.Setup(f => f.GetLocationByHostNameWithHttpMessagesAsync(It.IsAny <Dictionary <string, List <string> > >(), It.IsAny <CancellationToken>()))
            .Returns(Task.FromResult(resLocation));
        }