Ejemplo n.º 1
0
 public void GetPaymentPropertiesTest()
 {
     Mapper mapper = new Mapper();
     StringCollection propertyList = mapper.GetPaymentProperties();
     Assert.That(propertyList.Count == 12);
     Assert.IsFalse(propertyList.Contains("Fee"));
     Assert.IsTrue(propertyList.Contains("Amount"));
 }
Ejemplo n.º 2
0
        public void CreateMapTest()
        {
            Mapper mapper = new Mapper();
            StringCollection propertyList = mapper.GetPaymentProperties();
            mapper.Add("ClaimID", propertyList[0]);
            mapper.Add("Fee", propertyList[1]);
            mapper.Add("UID", propertyList[2]);
            mapper.Add("InsurerContractCode", propertyList[11]);

            //StringDictionary dict = mapper.GetCurrentMap();
            Assert.That(mapper.Count == 4);
            Assert.IsTrue(mapper.ContainsKey("Fee"));
            Assert.IsTrue(mapper["Fee"] == "Amount");
        }