Package com.coherentlogic.wb.client.core.domain

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


        assertEquals ("SSF", region.getId());
        assertEquals (
            "Sub-Saharan Africa (all income levels)", region.getValue());

        AdminRegion adminRegion = country.getAdminRegion();

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


        Region region = new Region ();
        region.setId("SSF");
        region.setValue("Sub-Saharan Africa (all income levels)");

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

        Region region = new Region ();
        region.setId("SSF");
        region.setValue("Sub-Saharan Africa (all income levels)");

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

        expectedRegion.setId("ECS");
        expectedRegion.setValue("Europe & Central Asia (all income levels)");

        expectedCountry.setRegion(expectedRegion);

        AdminRegion adminRegion = new AdminRegion();
        adminRegion.setId("");
        adminRegion.setValue("");

        expectedCountry.setAdminRegion(adminRegion);

        IncomeLevel incomeLevel = new IncomeLevel();
        incomeLevel.setId("NOC");
View Full Code Here

        region.setId("ECS");
        region.setValue("Europe & Central Asia (all income levels)");

        expected.setRegion(region);

        AdminRegion adminRegion = new AdminRegion();
        adminRegion.setId("");
        adminRegion.setValue("");

        expected.setAdminRegion(adminRegion);

        IncomeLevel incomeLevel = new IncomeLevel ();
View Full Code Here

TOP

Related Classes of com.coherentlogic.wb.client.core.domain.AdminRegion

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.