Package net.sourceforge.myreserve.web

Examples of net.sourceforge.myreserve.web.ReservationIDHelper


*/
public class ReservationIDHelperTest {
   
    @Test
    public void testIDToFormatted() {
        ReservationIDHelper rid = new ReservationIDHelper();
        Integer id = new Integer(1234);
        String formattedId = rid.idToFormatted(id);
        assertEquals(formattedId, "RES0001234");
    }
View Full Code Here


        assertEquals(formattedId, "RES0001234");
    }
   
    @Test
    public void testIDToFormattedNull() {
        ReservationIDHelper rid = new ReservationIDHelper();
        Integer id = null;
        String formattedId = rid.idToFormatted(id);
        assertNull(formattedId);
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.myreserve.web.ReservationIDHelper

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.