Package org.easycassandra.bean.model

Examples of org.easycassandra.bean.model.Animal


    /**
     * run the test.
     */
    @Test
    public void insertErrorTest() {
        Animal animal = new Animal();
        animal.setName("Lion");
        animal.setRace("I know no");
        animal.setCountry("Brazil");
        Assert.assertTrue(dao.insert(animal));

    }
View Full Code Here


    /**
     * run the test.
     */
    @Test(expected = KeyProblemsException.class)
    public void insertNullError() {
        Animal animal = new Animal();
        animal.setRace("I know no");
        animal.setCountry("Brazil");
        Assert.assertFalse(dao.insert(animal));
    }
View Full Code Here

TOP

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

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.