Package com.xmage.ws.rest.services

Examples of com.xmage.ws.rest.services.XMageStatsService


public class XMageStatsServiceTest {

    @Test
    public void testAddNewAndGet() throws Exception {

        XMageStatsService xMageStatsService = new XMageStatsService();

        Response response = xMageStatsService.getAllStats();

        JSONParser parser = new JSONParser();
        parser.parseJSON((String) response.getEntity());

        Assert.assertEquals(DomainErrors.Errors.STATUS_OK.getCode(), parser.getInt("code"));
View Full Code Here

TOP

Related Classes of com.xmage.ws.rest.services.XMageStatsService

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.