Package org.easycassandra.bean.model

Examples of org.easycassandra.bean.model.ProductShopping


    /**
     * run the test.
     */
    @Test
    public void insertTest() {
        ProductShopping shopping = new ProductShopping();
        shopping.setName("notebook");
        Products products = new Products();
        products.setNome("Dell Ubuntu");
        products.setCountry("Brazil");
        products.setValue(VALUE);
        shopping.setProducts(products);
        Assert.assertTrue(dao.insert(shopping));

    }
View Full Code Here


    /**
     * run the test.
     */
    @Test
    public void retrieveTest() {
        ProductShopping shopping = dao.retrieve("notebook");
        Assert.assertNotNull(shopping);

    }
View Full Code Here

TOP

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

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.