Esempio n. 1
0
 public NumberSerialzationTest()
 {
     _channel = new LoggingChannel();
     _client  = new StatsdClient(_channel);
 }
Esempio 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);
 }