Package org.drools.workbench.models.guided.scorecard.backend.base

Source Code of org.drools.workbench.models.guided.scorecard.backend.base.GuidedScoreCardConverterTest

package org.drools.workbench.models.guided.scorecard.backend.base;

import org.drools.compiler.kie.builder.impl.FormatConverter;
import org.drools.workbench.models.guided.scorecard.backend.GuidedScoreCardConverter;
import org.junit.Test;

import static org.junit.Assert.*;

public class GuidedScoreCardConverterTest {

    @Test
    public void testZeroParameterConstructor() {
        //A zero parameter is essential for programmatic instantiation from FormatsManager
        final FormatConverter converter = new GuidedScoreCardConverter();
        assertNotNull( converter );
    }

}
TOP

Related Classes of org.drools.workbench.models.guided.scorecard.backend.base.GuidedScoreCardConverterTest

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.