Package booton.sample.beans

Examples of booton.sample.beans.StringMap


        assert other.get(2).equals("three");
    }

    @Test
    public void map() throws Exception {
        Map<String, String> map = new StringMap();
        map.put("1", "one");
        map.put("2", "two");
        map.put("3", "three");

        Map<String, String> other = writeThenRead(map);
        assert other.size() == 3;
        assert other.get("1").equals("one");
        assert other.get("2").equals("two");
View Full Code Here

TOP

Related Classes of booton.sample.beans.StringMap

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.