Package model

Examples of model.Practice


        System.out.println("Successfully tested STEG condition of LVA: " + l1);
    }
   
    public void testOtherRegistrations() throws Exception{
        Interview interview = new Interview(2000, today, tomorrow, yesterday, tomorrow, tomorrow, new Lecturer("Peter", "Zaruba"), 30, new ArrayList<User>());
        Practice practice = new Practice(today, tomorrow, yesterday, tomorrow, tomorrow, 2);
        PracticeGroup practiceGroup = new PracticeGroup(today, tomorrow, yesterday, tomorrow, tomorrow, 2, new ArrayList<Practice>(), new ArrayList<PracticeSheet>(), new ArrayList<User>());
       
        interviewService.saveAppointment(interview, lect1);
        interviewService.register(student1, interview, student1);
        System.out.println("Successfully tested saving and registering to interview: " + interview);
View Full Code Here

TOP

Related Classes of model.Practice

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.