Package net.firstpartners.sample.DslRuleflow

Source Code of net.firstpartners.sample.DslRuleflow.RuleflowExampleTest

package net.firstpartners.sample.DslRuleflow;

import static org.junit.Assert.assertNotNull;

import java.io.IOException;

import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.drools.compiler.DroolsParserException;

public class RuleflowExampleTest {

  public final void testRunRuleflowExample() throws DroolsParserException, IOException, ClassNotFoundException {

    RuleflowExample thisSample =new RuleflowExample();
    HSSFWorkbook wb = thisSample.runRuleflowExample();

    assertNotNull(wb);

    //fail("Test needs further assertions"); // TODO
  }

}
TOP

Related Classes of net.firstpartners.sample.DslRuleflow.RuleflowExampleTest

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.