Package models

Examples of models.User2


        User u0 = new User();
        u0.name = "Foo";
        u0.tag = "sdfu893749";
        u0.save();
       
        User2 u1 = User2.filter("nm", "Foo").get();
        assertNotNull(u1);
        assertEquals(u1.tag, u0.tag);
    }
View Full Code Here

TOP

Related Classes of models.User2

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.