public void AddTest()
 {
     var coll = new CsvMappingCollection
     {
         new Tuple <string, ContactProp>("Spalte", ContactProp.AddressHomeCity)
     };
 }
        public void TestDuplicateContactProperty()
        {
            var coll = new CsvMappingCollection();

            coll.Add(new Tuple <string, ContactProp>("Spalte1", ContactProp.AddressHomeCity));
            coll.Add(new Tuple <string, ContactProp>("Spalte2", ContactProp.AddressHomeCity));
        }
 public void TestItem1Whitespace()
 {
     var coll = new CsvMappingCollection
     {
         new Tuple <string, ContactProp>("   ", ContactProp.AddressHomeCity)
     };
 }