Package org.jmcdonnell.blackoutrugby.beans

Examples of org.jmcdonnell.blackoutrugby.beans.Standing


        Long memberId = new Long(System.getProperty("standing.id"));
        List<Standing> entitiesFromApi
                = requestManager.getListOfEntityByIdFromApi(memberId, Standing.class, Boolean.FALSE, Boolean.FALSE);

        assertTrue(entitiesFromApi.size() == 8);
        Standing get = entitiesFromApi.get(0);

        assertNotNull(get.getB1());
        assertNotNull(get.getB2());
        assertNotNull(get.getCountryIso());
        assertNotNull(get.getDivision());
        assertNotNull(get.getDrawn());
        assertNotNull(get.getId());
        assertNotNull(get.getLeague());
        assertNotNull(get.getLost());
        assertNotNull(get.getLeagueId());
        assertNotNull(get.getPlayed());
        assertNotNull(get.getPoints());
        assertNotNull(get.getPointsAgainst());
        assertNotNull(get.getPointsFor());
        assertNotNull(get.getSeason());
        assertNotNull(get.getStanding());
        assertNotNull(get.getTeamId());
        assertNotNull(get.getWon());
    }
View Full Code Here

TOP

Related Classes of org.jmcdonnell.blackoutrugby.beans.Standing

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.