public void ReadOnlyPropertyExceptionException_Exception()
        {
            MapperConfigurationTestContainer expected = new MapperConfigurationTestContainer();

            expected.ForMember(s => s.PropInt1, d => d.RealOnlyPropInt1);
            expected.CreateMappingExpression(null);
        }
        public void NotSameTypePropertyException_Exception()
        {
            MapperConfigurationTestContainer expected = new MapperConfigurationTestContainer();

            expected.ForMember(s => s.PropInt1, d => d.PropString2);
            expected.CreateMappingExpression(null);
        }
 public void ReadOnlyPropertyExceptionException_Exception()
 {
     MapperConfigurationTestContainer expected = new MapperConfigurationTestContainer();
     expected.ForMember(s => s.PropInt1, d => d.RealOnlyPropInt1);
     expected.CreateMappingExpression(null);
 }
 public void NotSameTypePropertyException_Exception()
 {
     MapperConfigurationTestContainer expected = new MapperConfigurationTestContainer();
     expected.ForMember(s => s.PropInt1, d => d.PropString2);
     expected.CreateMappingExpression(null);
 }