public class TestUtils {
public static ThreadFixRestClient getConfiguredClient() {
assert System.getProperty("REST_URL") != null : "The REST_URL system property is required to run this test.";
assert System.getProperty("API_KEY") != null : "The API_KEY system property is required to run this test.";
return new ThreadFixRestClientImpl(System.getProperty("REST_URL"), System.getProperty("API_KEY"));
}