Package booton.sample.beans

Examples of booton.sample.beans.StringList


        assert other.getMap().get("3").equals("three");
    }

    @Test
    public void list() throws Exception {
        List<String> list = new StringList();
        list.add("one");
        list.add("two");
        list.add("three");

        List<String> other = writeThenRead(list);
        assert other.size() == 3;
        assert other.get(0).equals("one");
        assert other.get(1).equals("two");
View Full Code Here

TOP

Related Classes of booton.sample.beans.StringList

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.