protected RestAssuredFixture util;
@Test
@Ignore("functionality currently broken on Windows and Integration Testing environment")
public void hasMifosPlatformStarted() {
util = new RestAssuredFixture(8443);
List<Map<String, String>> response = util.httpGet("/users");
assertThat(response.get(0).get("username"), is("mifos"));
}