File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed
MongoDB.Bson.Tests/Serialization/Conventions Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -170,10 +170,7 @@ public void Apply(BsonMemberMap memberMap)
170170 RunOrder = _orderIndexProvider ( ) ;
171171 }
172172
173- public void Apply ( BsonMemberMap memberMap , IBsonSerializationDomain domain )
174- {
175- throw new NotImplementedException ( ) ;
176- }
173+ public void Apply ( BsonMemberMap memberMap , IBsonSerializationDomain domain ) => Apply ( memberMap ) ;
177174 }
178175
179176 private class TrackingAfterConvention : IPostProcessingConvention , ITrackRun
@@ -200,10 +197,7 @@ public void PostProcess(BsonClassMap classMap)
200197 RunOrder = _orderIndexProvider ( ) ;
201198 }
202199
203- public void PostProcess ( BsonClassMap classMap , IBsonSerializationDomain domain )
204- {
205- throw new NotImplementedException ( ) ;
206- }
200+ public void PostProcess ( BsonClassMap classMap , IBsonSerializationDomain domain ) => PostProcess ( classMap ) ;
207201 }
208202 }
209203}
Original file line number Diff line number Diff line change 2424
2525namespace MongoDB . Driver . Tests
2626{
27+ [ Trait ( "Category" , "Integration" ) ]
2728 public class MultipleRegistriesTests
2829 {
2930 [ Fact ]
You can’t perform that action at this time.
0 commit comments