Examples of BusyEmployee


Examples of com.dyuproject.json.test.BusyEmployee

        StandardJSON json = new StandardJSON(new OverloadConvertorCache());
        File file = new File(resource);
        BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(file)));
        Map<String,Object> map = (Map<String,Object>)json.parse(new ReaderSource(reader));
        Employee e = (Employee)map.get("employee");
        BusyEmployee be = (BusyEmployee)map.get("busy_employee");
        assertTrue(e!=null);
        assertTrue(be!=null);
        assertTrue("John".equals(e.getFirstName()));
        assertTrue("John".equals(be.getFirstName()));
        checkTasks(e.getTasks());
        checkTasks(be.getTasks());
        checkExtraTasks(be.getExtraTasks());
    }
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.