Package org.easycassandra.bean.model

Examples of org.easycassandra.bean.model.Picture$Details


    /**
     * run the test.
     */
    @Test
    public void insertTest() {
        Picture picture = new Picture();
        picture.setDetail(new Details());
        picture.setName("mypicture");
        picture.getDetail().setFileName("otavio.png");
        byte[] file = new byte[SIZE];
        new Random().nextBytes(file);
        picture.getDetail().setContents(file);
        Assert.assertTrue(dao.insert(picture));

    }
View Full Code Here


    /**
     * run the test.
     */
    @Test
    public void retrieveTest() {
        Picture picture = dao.retrieve("mypicture");
        Assert.assertNotNull(picture);
    }
View Full Code Here

TOP

Related Classes of org.easycassandra.bean.model.Picture$Details

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.