File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
test/OpenFeature.Providers.MultiProvider.Tests/Utils Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,19 @@ namespace OpenFeature.Providers.MultiProvider.Tests.Utils;
66/// <summary>
77/// Represents a tracking invocation for testing purposes.
88/// </summary>
9- public record TrackingInvocation ( string EventName , EvaluationContext ? EvaluationContext , TrackingEventDetails ? TrackingEventDetails ) ;
9+ public class TrackingInvocation
10+ {
11+ public string EventName { get ; }
12+ public EvaluationContext ? EvaluationContext { get ; }
13+ public TrackingEventDetails ? TrackingEventDetails { get ; }
14+
15+ public TrackingInvocation ( string eventName , EvaluationContext ? evaluationContext , TrackingEventDetails ? trackingEventDetails )
16+ {
17+ this . EventName = eventName ;
18+ this . EvaluationContext = evaluationContext ;
19+ this . TrackingEventDetails = trackingEventDetails ;
20+ }
21+ }
1022
1123/// <summary>
1224/// A test implementation of FeatureProvider for MultiProvider testing.
You can’t perform that action at this time.
0 commit comments