Tests.MetricIntegrationTests.Counter.counter_with_prefix_having_a_trailing_dot C# (CSharp) Method

counter_with_prefix_having_a_trailing_dot() private method

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

                Metrics.Counter("counter");
                Assert.That(LastPacketMessageReceived(), Is.EqualTo("test_prefix.counter:1|c"));
            }