Package org.mifosplatform.common

Examples of org.mifosplatform.common.RestAssuredFixture


    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"));
    }
View Full Code Here

TOP

Related Classes of org.mifosplatform.common.RestAssuredFixture

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.