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)
170
170
RunOrder = _orderIndexProvider ( ) ;
171
171
}
172
172
173
- public void Apply ( BsonMemberMap memberMap , IBsonSerializationDomain domain )
174
- {
175
- throw new NotImplementedException ( ) ;
176
- }
173
+ public void Apply ( BsonMemberMap memberMap , IBsonSerializationDomain domain ) => Apply ( memberMap ) ;
177
174
}
178
175
179
176
private class TrackingAfterConvention : IPostProcessingConvention , ITrackRun
@@ -200,10 +197,7 @@ public void PostProcess(BsonClassMap classMap)
200
197
RunOrder = _orderIndexProvider ( ) ;
201
198
}
202
199
203
- public void PostProcess ( BsonClassMap classMap , IBsonSerializationDomain domain )
204
- {
205
- throw new NotImplementedException ( ) ;
206
- }
200
+ public void PostProcess ( BsonClassMap classMap , IBsonSerializationDomain domain ) => PostProcess ( classMap ) ;
207
201
}
208
202
}
209
203
}
Original file line number Diff line number Diff line change 24
24
25
25
namespace MongoDB . Driver . Tests
26
26
{
27
+ [ Trait ( "Category" , "Integration" ) ]
27
28
public class MultipleRegistriesTests
28
29
{
29
30
[ Fact ]
You can’t perform that action at this time.
0 commit comments