Package org.springmodules.xt.test.domain

Examples of org.springmodules.xt.test.domain.EmployeeFactory.make()


        factory.setNickname("SB");
        factory.setMatriculationCode("111");
        factory.setFirstname("Sergio");
        factory.setSurname("Bossa");
       
        IEmployee emp = factory.make();
       
        assertTrue(emp instanceof Employee);
        assertEquals("SB", emp.getNickname());
        assertEquals("111", emp.getMatriculationCode());
        assertEquals("Sergio", emp.getFirstname());
View Full Code Here


        factory.setFirstname("Sergio");
        factory.setSurname("Bossa");
        // We don't set matriculation code ...
       
        try {
            IEmployee emp = factory.make();
            fail("Construction should fail!");
        }
        catch(Exception ex) {
            ex.printStackTrace();
        }
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.