public void testDepositReversal_Full()
        {
            var depositReversal = new DepositReversal
            {
                ID = "theId",
                ReportGroup = "theReportGroup",
                CustomerId = "theCustomerId",
                LitleTxnId = "123"
            };

            string actual = depositReversal.Serialize();
            const string expected = @"
            <depositReversal id=""theId"" customerId=""theCustomerId"" reportGroup=""theReportGroup"">
            <litleTxnId>123</litleTxnId>
            </depositReversal>";
            Assert.AreEqual(expected, actual);
        }