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

absolute_gauge_with_prefix_having_a_trailing_dot() private method

private absolute_gauge_with_prefix_having_a_trailing_dot ( ) : void
return void
            public void absolute_gauge_with_prefix_having_a_trailing_dot()
            {
                _defaultMetricsConfig.Prefix = "test_prefix.";
                Metrics.Configure(_defaultMetricsConfig);

                Metrics.GaugeAbsoluteValue("gauge", 3);
                Assert.That(LastPacketMessageReceived(), Is.EqualTo("test_prefix.gauge:3.000000000000000|g"));
            }