Package com.robustaweb.library.rest.resource.implementation

Examples of com.robustaweb.library.rest.resource.implementation.UserImpl


    public static void tearDownClass() throws Exception {
    }

    @Test
    public void testGetItems() {
        UserImpl user = UserImpl.johnDoe;
        System.out.println("couples : "+rft.getFieldValueCouples(user));
        assertTrue (rft.getFieldValueCouples(user).size() == 5);

        SuperUser user2 = new SuperUser(2L, "jj@gmail.com", "Jane", "Doe");
        System.out.println("couples : "+rft.getFieldValueCouples(user2));
View Full Code Here

TOP

Related Classes of com.robustaweb.library.rest.resource.implementation.UserImpl

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.