public SetAzureResourceGroupCommandTests()
        {
            resourcesClientMock = new Mock<ResourcesClient>();
            commandRuntimeMock = new Mock<ICommandRuntime>();
            cmdlet = new SetAzureResourceGroupCommand()
            {
                CommandRuntime = commandRuntimeMock.Object,
                ResourcesClient = resourcesClientMock.Object
            };

            tags = new [] {new Hashtable
                {
                    {"Name", "value1"},
                    {"Value", ""}
                }}.ToList();
        }
        public SetAzureResourceGroupCommandTests()
        {
            resourcesClientMock = new Mock <ResourcesClient>();
            commandRuntimeMock  = new Mock <ICommandRuntime>();
            cmdlet = new SetAzureResourceGroupCommand()
            {
                CommandRuntime  = commandRuntimeMock.Object,
                ResourcesClient = resourcesClientMock.Object
            };

            tags = new [] { new Hashtable
                            {
                                { "Name", "value1" },
                                { "Value", "" }
                            } }.ToList();
        }