Package org.easycassandra.bean.model

Examples of org.easycassandra.bean.model.Drink


    /**
     * run the test.
     */
    @Test
    public void insertTest() {
        Drink drink = new Drink();
        drink.setId(1L);
        drink.setFlavor("orange");
        drink.setName("cup of juice");

        Person person = new Person();
        person.setId(1L);
        person.setName("otávio");
        person.setYear(YEAR);
View Full Code Here


    /**
     * run the test.
     */
    @Test
    public void retrieveTest() {
        Drink drink = dao.retrieve(1L);

        Assert.assertNotNull(drink);
    }
View Full Code Here

TOP

Related Classes of org.easycassandra.bean.model.Drink

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.