Examples of ProductShopping


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

Examples of org.easycassandra.bean.model.ProductShopping

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

    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.