Exemple #1
0
        public void MapIdentifier_Must_Be_Case_Insensitive()
        {
            var mapper = new PersonMap();

            mapper.ExecuteMapping();

            mapper.Executing(x => x.GetByFieldName("id")).NotThrows();
        }
Exemple #2
0
        public void MapAttribute_Must_Be_Case_Insensitive()
        {
            var mapper = new PersonMap();

            mapper.ExecuteMapping();

            mapper.Executing(x => x.GetByFieldName("NOME")).NotThrows();
        }