public void GetAzureVMChefExtensionExecuteChefCommand()
        {
            var getChefExtension = new GetAzureVMChefExtensionCommandStub()
            {
                CommandRuntime = mockCommandRuntime,
                VM = mockIPersistentVM
            };

            getChefExtension.ExecuteCommand();

            Assert.AreEqual(1, mockCommandRuntime.OutputPipeline.Count, "One item should be in the output pipeline");
        }
        public void GetAzureVMChefExtensionExecuteChefCommand()
        {
            var getChefExtension = new GetAzureVMChefExtensionCommandStub()
            {
                CommandRuntime = mockCommandRuntime,
                VM             = mockIPersistentVM
            };

            getChefExtension.ExecuteCommand();

            Assert.AreEqual(1, mockCommandRuntime.OutputPipeline.Count, "One item should be in the output pipeline");
        }