public void GetUpdatedClaimChargeDataBasedOnMatchedContractNotNullTest()
        {
            MatchServiceType target        = new MatchServiceType();
            List <ClaimData> claimDataList = new List <ClaimData>();
            List <Contracts> contracts     = new List <Contracts>();
            List <ClaimData> expected      = new List <ClaimData>();
            List <ClaimData> actual        = target.GetUpdatedClaimChargeDataBasedOnMatchedContract(claimDataList, contracts);

            Assert.AreEqual(expected.Count, actual.Count);
            //Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void GetUpdatedClaimChargeDataBasedOnMatchedContractPaymentTypeStopLossNullTest()
        {
            MatchServiceType target        = new MatchServiceType();
            List <ClaimData> claimDataList = new List <ClaimData> {
                new ClaimData {
                    MatchedContractId = 12121, IsMatched = true
                }
            };
            List <Contracts> contracts = new List <Contracts> {
                new Contracts {
                    ContractId = 12121, PaymentTypeStopLoss = null
                }
            };
            List <ClaimData> expected = claimDataList;
            List <ClaimData> actual   = target.GetUpdatedClaimChargeDataBasedOnMatchedContract(claimDataList, contracts);

            Assert.AreEqual(expected.Count, actual.Count);
            //Assert.Inconclusive("Verify the correctness of this test method.");
        }