Tests.StatsdTests.Counter.increases_counter_with_value_of_X C# (CSharp) Method

increases_counter_with_value_of_X() private method

private increases_counter_with_value_of_X ( ) : void
return void
            public void increases_counter_with_value_of_X()
            {
                var s = new Statsd(_udp, _randomGenerator, _stopwatch);
                s.Send<Statsd.Counting>("counter", 5);
                _udp.AssertWasCalled(x => x.Send("counter:5|c"));
            }