public TuckerRockyApiOrderTests()
 {
     var config = TuckerRockyApiConfiguration.FromConfiguration();
     config.AllowDuplicatePos = "YES"; // Because we will be testing more than one of the same PO we will need to allow multiples
     config.Submit = "NO"; // Be absolutely sure this is not actually submitting
     _client = new TuckerRockyClient(config);
 }
 public TuckerRockyApiInventoryTests()
 {
     _config = TuckerRockyApiConfiguration.FromConfiguration();
     _client = new TuckerRockyClient(_config);
 }
 public TuckerRockyApiShipmentTests()
 {
     var config = TuckerRockyApiConfiguration.FromConfiguration();
     _client = new TuckerRockyClient(config);
 }