public void TestUpdatePlan_Full()
        {
            var update = new UpdatePlan {PlanCode = "abc", Active = true};

            string actual = update.Serialize();
            const string expected = @"
            <updatePlan>
            <planCode>abc</planCode>
            <active>true</active>
            </updatePlan>";
            Assert.AreEqual(expected, actual);
        }
        public void testUpdatePlan()
        {
            UpdatePlan updatePlan = new UpdatePlan();

            batchRequest.AddUpdatePlan(updatePlan);

            Assert.AreEqual(1, batchRequest.GetNumUpdatePlans());

            mockLitleFile.Verify(litleFile => litleFile.CreateRandomFile(It.IsAny<String>(), It.IsAny<String>(), It.IsAny<String>(), mockLitleTime.Object));
            mockLitleFile.Verify(litleFile => litleFile.AppendLineToFile(mockFilePath, updatePlan.Serialize()));
        }