Tests.MetricIntegrationTests.GaugeAbsolute.gauge_with_no_config_setup_should_not_send_metric C# (CSharp) Method

gauge_with_no_config_setup_should_not_send_metric() private method

private gauge_with_no_config_setup_should_not_send_metric ( ) : void
return void
            public void gauge_with_no_config_setup_should_not_send_metric()
            {
                Metrics.Configure(new MetricsConfig());

                Metrics.GaugeAbsoluteValue("gauge", 3);
                Assert.That(LastPacketMessageReceived(), Is.Null);
            }