Examples of hyts_resource_fr_FR


Examples of tests.resources.subfolder.tests.resources.hyts_resource_fr_FR

     * @since 1.6
     */
    @SuppressWarnings("nls")
    public void test_handleKeySet() {
        ResourceBundle.clearCache();
        hyts_resource_fr_FR bundle = (hyts_resource_fr_FR) ResourceBundle
                .getBundle(
                        "tests.resources.subfolder.tests.resources.hyts_resource",
                        new Locale("fr", "FR"));
        Set<String> set = bundle.handleKeySet();
        assertEquals(4, set.size());
        assertTrue(set.contains("subChild1"));
        assertTrue(set.contains("subChild2"));
        assertTrue(set.contains("subParent3"));
        assertTrue(set.contains("subParent4"));
        set = bundle.keySet();
        assertEquals(6, set.size());
        assertTrue(set.contains("subChild1"));
        assertTrue(set.contains("subChild2"));
        assertTrue(set.contains("subParent1"));
        assertTrue(set.contains("subParent2"));
View Full Code Here

Examples of tests.resources.subfolder.tests.resources.hyts_resource_fr_FR

        assertTrue(set.contains("subParent4"));
    }
   
    public void test_handleGetObject(){
        ResourceBundle.clearCache();
        hyts_resource_fr_FR bundle = (hyts_resource_fr_FR) ResourceBundle
                .getBundle(
                        "tests.resources.subfolder.tests.resources.hyts_resource",
                        new Locale("fr", "FR"));
        try{
            bundle.handleGetObject(null);
            fail("Should throw NPE");
        }catch(NullPointerException e){
        }
    }
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.