Examples of IncomeLevel


Examples of com.coherentlogic.wb.client.core.domain.IncomeLevel

        assertEquals ("SSA", adminRegion.getId());
        assertEquals (
            "Sub-Saharan Africa (developing only)", adminRegion.getValue());

        IncomeLevel incomeLevel = country.getIncomeLevel();

        assertEquals ("LIC", incomeLevel.getId());
        assertEquals ("Low income", incomeLevel.getValue());

        LendingType lendingType = country.getLendingType();

        assertEquals ("IDX", lendingType.getId());
        assertEquals ("IDA", lendingType.getValue());
View Full Code Here

Examples of com.coherentlogic.wb.client.core.domain.IncomeLevel

    static IncomeLevels createIncomeLevels () {

        IncomeLevels result = new IncomeLevels ();

        IncomeLevel incomeLevel =
            IdValuePairTestHelper.create(IncomeLevel.class);

        List<IncomeLevel> incomeLevelList = new ArrayList<IncomeLevel> ();
       
        incomeLevelList.add(incomeLevel);
View Full Code Here

Examples of com.coherentlogic.wb.client.core.domain.IncomeLevel

        AdminRegion adminRegion = new AdminRegion();
        adminRegion.setId("SSA");
        adminRegion.setValue("Sub-Saharan Africa (developing only)");

        IncomeLevel incomeLevel = new IncomeLevel ();
        incomeLevel.setId("LIC");
        incomeLevel.setValue("Low income");

        LendingType lendingType = new LendingType();
        lendingType.setId ("IDX");
        lendingType.setValue("IDA");
View Full Code Here

Examples of com.coherentlogic.wb.client.core.domain.IncomeLevel

        AdminRegion adminRegion = new AdminRegion();
        adminRegion.setId("SSA");
        adminRegion.setValue("Sub-Saharan Africa (developing only)");

        IncomeLevel incomeLevel = new IncomeLevel ();
        incomeLevel.setId("LIC");
        incomeLevel.setValue("Low income");

        LendingType lendingType = new LendingType();
        lendingType.setId ("IDX");
        lendingType.setValue("IDA");
View Full Code Here

Examples of com.coherentlogic.wb.client.core.domain.IncomeLevel

        adminRegion.setId("");
        adminRegion.setValue("");

        expectedCountry.setAdminRegion(adminRegion);

        IncomeLevel incomeLevel = new IncomeLevel();
        incomeLevel.setId("NOC");
        incomeLevel.setValue("High income: nonOECD");

        expectedCountry.setIncomeLevel(incomeLevel);

        LendingType lendingType = new LendingType ();
        lendingType.setId("LNX");
View Full Code Here

Examples of com.coherentlogic.wb.client.core.domain.IncomeLevel

        reviewPaginationProperties (1, 1, 50, 10, result);

        List<IncomeLevel> incomeLevelList = result.getIncomeLevelList();

        IncomeLevel third = incomeLevelList.get(3);

        reviewIdValuePair("LIC", "Low income", third);
    }
View Full Code Here

Examples of com.coherentlogic.wb.client.core.domain.IncomeLevel

        adminRegion.setId("");
        adminRegion.setValue("");

        expected.setAdminRegion(adminRegion);

        IncomeLevel incomeLevel = new IncomeLevel ();

        incomeLevel.setId("OEC");
        incomeLevel.setValue("High income: OECD");

        expected.setIncomeLevel(incomeLevel);

        LendingType lendingType = new LendingType ();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.