Package org.drools.compiler.rule.builder.dialect.mvel

Source Code of org.drools.compiler.rule.builder.dialect.mvel.MVELExprAnalyzerTest

package org.drools.compiler.rule.builder.dialect.mvel;

import org.drools.compiler.rule.builder.dialect.mvel.MVELExprAnalyzer;
import org.junit.Before;
import org.junit.Test;

public class MVELExprAnalyzerTest {

    private MVELExprAnalyzer analyzer;

    @Before
    public void setUp() throws Exception {
        analyzer = new MVELExprAnalyzer();
    }

    @Test
    public void testGetExpressionIdentifiers() {
//        try {
//            String expression = "order.id == 10";
//            List[] identifiers = analyzer.analyzeExpression( expression, new Set[0] );
//           
//            assertEquals( 1, identifiers.length );
//            assertEquals( 1, identifiers[0].size() );
//            assertEquals( "order", identifiers[0].get( 0 ));
//        } catch ( RecognitionException e ) {
//            e.printStackTrace();
//            fail( "Unexpected exception: "+e.getMessage());
//        }
    }

}
TOP

Related Classes of org.drools.compiler.rule.builder.dialect.mvel.MVELExprAnalyzerTest

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.