Esempio n. 1
0
 public void UseAdaptiveSamplingWithMaxItemsParameterThrowsArgumentNullExceptionBuilderIsNull()
 {
     AssertEx.Throws <ArgumentNullException>(() => TelemetryProcessorChainBuilderExtensions.UseAdaptiveSampling(null, 5));
 }
Esempio n. 2
0
 public void UseSamplingThrowsArgumentNullExceptionBuilderIsNull()
 {
     AssertEx.Throws <ArgumentNullException>(() => TelemetryProcessorChainBuilderExtensions.UseSampling(null, 5));
 }
Esempio n. 3
0
 public void UseAdaptiveSamplingWithExcludedTypesThrowsArgumentNullExceptionBuilderIsNull()
 {
     AssertEx.Throws <ArgumentNullException>(() => TelemetryProcessorChainBuilderExtensions.UseAdaptiveSampling(null, "request"));
 }
Esempio n. 4
0
 public void UseSamplingWithExcluedTypesParameterThrowsArgumentNullExceptionBuilderIsNull()
 {
     Assert.Throws <ArgumentNullException>(() => TelemetryProcessorChainBuilderExtensions.UseSampling(null, 5, "request"));
 }