@@ -87,19 +87,19 @@ class Destination6
8787 public void Should_set_inline_accordingly ( )
8888 {
8989 TypeMap map ;
90- map = FindTypeMapFor < Source , Destination > ( ) ;
90+ map = ResolveTypeMap < Source , Destination > ( ) ;
9191 map . PropertyMaps . First ( ) . Inline . ShouldBeTrue ( ) ;
92- map = FindTypeMapFor < Source1 , Destination1 > ( ) ;
92+ map = ResolveTypeMap < Source1 , Destination1 > ( ) ;
9393 map . PropertyMaps . First ( ) . Inline . ShouldBeTrue ( ) ;
94- map = FindTypeMapFor < Source2 , Destination2 > ( ) ;
94+ map = ResolveTypeMap < Source2 , Destination2 > ( ) ;
9595 map . PropertyMaps . First ( ) . Inline . ShouldBeFalse ( ) ;
96- map = FindTypeMapFor < Source3 , Destination3 > ( ) ;
96+ map = ResolveTypeMap < Source3 , Destination3 > ( ) ;
9797 map . PropertyMaps . First ( ) . Inline . ShouldBeFalse ( ) ;
98- map = FindTypeMapFor < Source4 , Destination4 > ( ) ;
98+ map = ResolveTypeMap < Source4 , Destination4 > ( ) ;
9999 map . PropertyMaps . First ( ) . Inline . ShouldBeFalse ( ) ;
100- map = FindTypeMapFor < Source5 , Destination5 > ( ) ;
100+ map = ResolveTypeMap < Source5 , Destination5 > ( ) ;
101101 map . PropertyMaps . First ( ) . Inline . ShouldBeFalse ( ) ;
102- map = FindTypeMapFor < Source6 , Destination6 > ( ) ;
102+ map = ResolveTypeMap < Source6 , Destination6 > ( ) ;
103103 map . PropertyMaps . First ( ) . Inline . ShouldBeTrue ( ) ;
104104 }
105105}
@@ -189,19 +189,19 @@ class Destination6
189189 public void Should_set_inline_accordingly ( )
190190 {
191191 TypeMap map ;
192- map = FindTypeMapFor < Source , Destination > ( ) ;
192+ map = ResolveTypeMap < Source , Destination > ( ) ;
193193 map . PropertyMaps . First ( ) . Inline . ShouldBeTrue ( ) ;
194- map = FindTypeMapFor < Source1 , Destination1 > ( ) ;
194+ map = ResolveTypeMap < Source1 , Destination1 > ( ) ;
195195 map . PropertyMaps . First ( ) . Inline . ShouldBeFalse ( ) ;
196- map = FindTypeMapFor < Source2 , Destination2 > ( ) ;
196+ map = ResolveTypeMap < Source2 , Destination2 > ( ) ;
197197 map . PropertyMaps . First ( ) . Inline . ShouldBeFalse ( ) ;
198- map = FindTypeMapFor < Source3 , Destination3 > ( ) ;
198+ map = ResolveTypeMap < Source3 , Destination3 > ( ) ;
199199 map . PropertyMaps . First ( ) . Inline . ShouldBeFalse ( ) ;
200- map = FindTypeMapFor < Source4 , Destination4 > ( ) ;
200+ map = ResolveTypeMap < Source4 , Destination4 > ( ) ;
201201 map . PropertyMaps . First ( ) . Inline . ShouldBeFalse ( ) ;
202- map = FindTypeMapFor < Source5 , Destination5 > ( ) ;
202+ map = ResolveTypeMap < Source5 , Destination5 > ( ) ;
203203 map . PropertyMaps . First ( ) . Inline . ShouldBeFalse ( ) ;
204- map = FindTypeMapFor < Source6 , Destination6 > ( ) ;
204+ map = ResolveTypeMap < Source6 , Destination6 > ( ) ;
205205 map . PropertyMaps . First ( ) . Inline . ShouldBeTrue ( ) ;
206206 }
207207}
@@ -293,17 +293,17 @@ class Destination6
293293 public void Should_set_inline_accordingly ( )
294294 {
295295 TypeMap map ;
296- map = FindTypeMapFor < Source , Destination > ( ) ;
296+ map = ResolveTypeMap < Source , Destination > ( ) ;
297297 map . PropertyMaps . First ( ) . Inline . ShouldBeFalse ( ) ;
298- map = FindTypeMapFor < Source1 , Destination1 > ( ) ;
298+ map = ResolveTypeMap < Source1 , Destination1 > ( ) ;
299299 map . PropertyMaps . First ( ) . Inline . ShouldBeFalse ( ) ;
300- map = FindTypeMapFor < Source2 , Destination2 > ( ) ;
300+ map = ResolveTypeMap < Source2 , Destination2 > ( ) ;
301301 map . PropertyMaps . First ( ) . Inline . ShouldBeFalse ( ) ;
302- map = FindTypeMapFor < Source3 , Destination3 > ( ) ;
302+ map = ResolveTypeMap < Source3 , Destination3 > ( ) ;
303303 map . PropertyMaps . First ( ) . Inline . ShouldBeFalse ( ) ;
304- map = FindTypeMapFor < Source4 , Destination4 > ( ) ;
304+ map = ResolveTypeMap < Source4 , Destination4 > ( ) ;
305305 map . PropertyMaps . First ( ) . Inline . ShouldBeFalse ( ) ;
306- map = FindTypeMapFor < Source5 , Destination5 > ( ) ;
306+ map = ResolveTypeMap < Source5 , Destination5 > ( ) ;
307307 map . PropertyMaps . First ( ) . Inline . ShouldBeFalse ( ) ;
308308 }
309309}
@@ -319,5 +319,5 @@ class Destination
319319 }
320320 protected override MapperConfiguration CreateConfiguration ( ) => new ( cfg => cfg . CreateMap < Source , Destination > ( ) ) ;
321321 [ Fact ]
322- public void Should_set_inline_accordingly ( ) => FindTypeMapFor < Source , Destination > ( ) . PropertyMaps . First ( ) . Inline . ShouldBeFalse ( ) ;
322+ public void Should_set_inline_accordingly ( ) => ResolveTypeMap < Source , Destination > ( ) . PropertyMaps . First ( ) . Inline . ShouldBeFalse ( ) ;
323323}
0 commit comments