Package org.drools.workbench.screens.guided.rule.backend.server

Examples of org.drools.workbench.screens.guided.rule.backend.server.EnumDropdownServiceImpl


public class EnumDropDownServiceTest {

    @Test
    public void testLoadDropDown() throws Exception {

        final EnumDropdownService service = new EnumDropdownServiceImpl();

        final String[] pairs = new String[]{ "f1=x", "f2=2" };
        final String expression = "['@{f1}', '@{f2}']";
        final String[] r = service.loadDropDownExpression( pairs,
                                                           expression );
        assertEquals( 2,
                      r.length );

        assertEquals( "x",
View Full Code Here


    }

    @Test
    public void testLoadDropDownNoValuePairs() throws Exception {

        final EnumDropdownService service = new EnumDropdownServiceImpl();

        final String[] pairs = new String[]{ null };
        final String expression = "['@{f1}', '@{f2}']";
        final String[] r = service.loadDropDownExpression( pairs,
                                                           expression );

        assertEquals( 0,
                      r.length );
    }
View Full Code Here

TOP

Related Classes of org.drools.workbench.screens.guided.rule.backend.server.EnumDropdownServiceImpl

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.