Package com.alibaba.citrus.service.pipeline.impl.condition

Examples of com.alibaba.citrus.service.pipeline.impl.condition.JexlCondition


public class JexlConditionTests extends AbstractConditionTests<JexlCondition> {
    @Test
    public void create() {
        try {
            new JexlCondition(null);
            fail();
        } catch (IllegalArgumentException e) {
            assertThat(e, exception("missing condition expression"));
        }

        condition = new JexlCondition("1==2");
        assertEquals("1==2", condition.getExpression());
    }
View Full Code Here

TOP

Related Classes of com.alibaba.citrus.service.pipeline.impl.condition.JexlCondition

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.