Package de.timefinder.data

Examples of de.timefinder.data.Event.addPerson()


    }

    @Test
    public void testCopyPropertiesOfEvent() throws Exception {
        Event source = new Event(4, 2);
        source.addPerson(new Person(), true);
        Event dest = new Event();
        Helper.copyProperties(source, dest);

        assertEquals(2, source.getDuration());
        assertEquals(2, dest.getDuration());
View Full Code Here


        settings.setTimeslotsPerDay(2);

        Person p1 = new Person("p1");
        pDao.attach(p1);
        Event ev1 = new Event(2, 1);
        ev1.addPerson(p1, true);
        eDao.attach(ev1);
       
        Event ev2 = new Event(1, 1);
        eDao.attach(ev2);
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.