public void SetUp()
 {
     this.config = new HoptoadConfiguration() {
         ApiKey = "123456",
         EnvironmentName = "test"
     };
     this.builder = new HoptoadNoticeBuilder(this.config);
 }
 public void SetUp()
 {
     _config = new HoptoadConfiguration
                  {
                      ApiKey = "123456",
                      EnvironmentName = "test"
                  };
     _builder = new HoptoadNoticeBuilder(_config);
 }
 public HoptoadNoticeBuilder(HoptoadConfiguration configuration)
 {
     this.configuration = configuration;
 }