Esempio n. 1
0
        public void MapIdentifier_Must_Be_Case_Insensitive()
        {
            var mapper = new PersonMap();

            mapper.ExecuteMapping();

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

            mapper.ExecuteMapping();

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