Exemplo n.º 1
0
 public NumberSerialzationTest()
 {
     _channel = new LoggingChannel();
     _client  = new StatsdClient(_channel);
 }
Exemplo n.º 2
0
 public StatsdClientTests()
 {
     _channel = new LoggingChannel();
     _client  = new StatsdClient(_channel);
 }
 public PrefixedStatsdClientTests()
 {
     _channel = new LoggingChannel();
     _client  = new StatsdClient(_channel, "custom.prefix");
 }
 public BackgroundStatsdClientTests()
 {
     _channel = new LoggingChannel();
     _client  = new BackgroundStatsdClient(_channel);
 }