Examples of EnumDropdownService


Examples of org.drools.workbench.screens.guided.rule.service.EnumDropdownService

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

Examples of org.drools.workbench.screens.guided.rule.service.EnumDropdownService

    }

    @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

Examples of org.kie.workbench.common.services.shared.enums.EnumDropdownService

    @Test
    public void testLoadDropDown() throws Exception {

        //Override code that converts Path to ClassLoader for test
        final ClassLoader cl = Thread.currentThread().getContextClassLoader();
        final EnumDropdownService service = new EnumDropdownServiceImpl() {
            @Override
            public String[] loadDropDownExpression( final Path resource,
                                                    final String[] valuePairs,
                                                    final String expression ) {
                return super.loadDropDownExpression( cl,
                                                     valuePairs,
                                                     expression );
            }
        };

        final String[] pairs = new String[]{ "f1=x", "f2=2" };
        final String expression = "['@{f1}', '@{f2}']";
        final String[] r = service.loadDropDownExpression( mock( Path.class ),
                                                           pairs,
                                                           expression );
        assertEquals( 2,
                      r.length );
View Full Code Here

Examples of org.kie.workbench.common.services.shared.enums.EnumDropdownService

    @Test
    public void testLoadDropDownNoValuePairs() throws Exception {

        //Override code that converts Path to ClassLoader for test
        final ClassLoader cl = Thread.currentThread().getContextClassLoader();
        final EnumDropdownService service = new EnumDropdownServiceImpl() {
            @Override
            public String[] loadDropDownExpression( final Path resource,
                                                    final String[] valuePairs,
                                                    final String expression ) {
                return super.loadDropDownExpression( cl,
                                                     valuePairs,
                                                     expression );
            }
        };

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

        assertEquals( 0,
                      r.length );
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.