props.load(new InputStreamReader(GenericServiceTest.class.getClassLoader().getResourceAsStream("resources/testvalues.properties")));
} catch (IOException e) {
e.printStackTrace();
}
if (props.getProperty("TRELLO_SECRET_KEY") != "") {
GenericServiceTest.client = new JTrelloClient(props.getProperty("TRELLO_API_KEY"), props.getProperty("TRELLO_SECRET_KEY"), props.getProperty("TRELLO_USER_TOKEN"));
} else {
GenericServiceTest.client = new JTrelloClient(props.getProperty("TRELLO_API_KEY"), props.getProperty("TRELLO_USER_TOKEN"));
}
}