Examples of GoraConfiguration


Examples of org.apache.camel.component.gora.GoraConfiguration

public class GoraUtilsTest {

    @Test
    public void configurationExistShouldSucceedtIfMethodExist() throws Exception {

        final GoraConfiguration conf = new GoraConfiguration();
        assertTrue(GoraUtils.configurationExist(GoraAttribute.GORA_QUERY_LIMIT, conf));
    }
View Full Code Here

Examples of org.apache.camel.component.gora.GoraConfiguration

    }

    @Test(expected = NoSuchMethodException.class)
    public void configurationExistShouldThrowExceptionIfMethodDoesNotExist() throws Exception {

        final GoraConfiguration conf = new GoraConfiguration();
        GoraUtils.configurationExist(GoraAttribute.GORA_KEY, conf);
    }
View Full Code Here

Examples of org.apache.camel.component.gora.GoraConfiguration

    }

    @Test
    public void getAttributeAsLongShouldSReturnTheCorrectValue() throws Exception {

        final GoraConfiguration conf = new GoraConfiguration();
        conf.setLimit(3L);
        assertEquals(new Long(3), GoraUtils.getAttributeAsLong(GoraAttribute.GORA_QUERY_LIMIT, conf));
    }
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.