You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
t =>Assert.Equal(typeof(FunctionsTelemetryInitializer),t.ImplementationType),
48
-
t =>Assert.Equal(typeof(AzureWebAppRoleEnvironmentTelemetryInitializer),t.ImplementationType),
49
-
t =>Assert.Equal(typeof(Microsoft.ApplicationInsights.WorkerService.TelemetryInitializers.DomainNameRoleInstanceTelemetryInitializer),t.ImplementationType),
50
-
t =>Assert.Equal(typeof(HttpDependenciesParsingTelemetryInitializer),t.ImplementationType),
51
-
t =>Assert.Equal(typeof(ComponentVersionTelemetryInitializer),t.ImplementationType));
48
+
Assert.Collection(initializers,
49
+
t =>Assert.Equal(typeof(FunctionsTelemetryInitializer),t.ImplementationType),
50
+
t =>Assert.Equal(typeof(AzureWebAppRoleEnvironmentTelemetryInitializer),t.ImplementationType),
51
+
t =>Assert.Equal(typeof(Microsoft.ApplicationInsights.WorkerService.TelemetryInitializers.DomainNameRoleInstanceTelemetryInitializer),t.ImplementationType),
52
+
t =>Assert.Equal(typeof(HttpDependenciesParsingTelemetryInitializer),t.ImplementationType),
53
+
t =>Assert.Equal(typeof(ComponentVersionTelemetryInitializer),t.ImplementationType));
52
54
53
-
Assert.Collection(modules,
54
-
t =>Assert.Equal(typeof(FunctionsTelemetryModule),t.ImplementationType),
55
-
t =>Assert.Equal(typeof(DiagnosticsTelemetryModule),t.ImplementationType),
56
-
t =>Assert.Equal(typeof(AppServicesHeartbeatTelemetryModule),t.ImplementationType),
57
-
t =>Assert.Equal(typeof(AzureInstanceMetadataTelemetryModule),t.ImplementationType),
58
-
t =>Assert.Equal(typeof(PerformanceCollectorModule),t.ImplementationType),
59
-
t =>Assert.Equal(typeof(QuickPulseTelemetryModule),t.ImplementationType),
60
-
t =>Assert.Equal(typeof(DependencyTrackingTelemetryModule),t.ImplementationType),
61
-
t =>Assert.Equal(typeof(EventCounterCollectionModule),t.ImplementationType));
// Ensure that our Initializer and Module are added alongside the defaults
188
-
Assert.Collection(initializers,
201
+
// Ensure that our Initializer and Module are added alongside the defaults
202
+
Assert.Collection(initializers,
189
203
t =>Assert.Equal(typeof(FunctionsTelemetryInitializer),t.ImplementationType),
190
204
t =>Assert.Equal(typeof(AzureWebAppRoleEnvironmentTelemetryInitializer),t.ImplementationType),
191
205
t =>Assert.Equal(typeof(Microsoft.ApplicationInsights.WorkerService.TelemetryInitializers.DomainNameRoleInstanceTelemetryInitializer),t.ImplementationType),
192
206
t =>Assert.Equal(typeof(HttpDependenciesParsingTelemetryInitializer),t.ImplementationType),
193
207
t =>Assert.Equal(typeof(ComponentVersionTelemetryInitializer),t.ImplementationType));
194
208
195
-
Assert.Collection(modules,
196
-
t =>Assert.Equal(typeof(FunctionsTelemetryModule),t.ImplementationType),
197
-
t =>Assert.Equal(typeof(DiagnosticsTelemetryModule),t.ImplementationType),
198
-
t =>Assert.Equal(typeof(AppServicesHeartbeatTelemetryModule),t.ImplementationType),
199
-
t =>Assert.Equal(typeof(AzureInstanceMetadataTelemetryModule),t.ImplementationType),
200
-
t =>Assert.Equal(typeof(PerformanceCollectorModule),t.ImplementationType),
201
-
t =>Assert.Equal(typeof(QuickPulseTelemetryModule),t.ImplementationType),
202
-
t =>Assert.Equal(typeof(DependencyTrackingTelemetryModule),t.ImplementationType),
203
-
t =>Assert.Equal(typeof(EventCounterCollectionModule),t.ImplementationType));
0 commit comments