Package net.firstpartners.sample.ExcelDataRules

Source Code of net.firstpartners.sample.ExcelDataRules.ExcelDataExampleTest

package net.firstpartners.sample.ExcelDataRules;

import static org.junit.Assert.fail;

import java.io.IOException;

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

public class ExcelDataExampleTest {

  @Test
  public final void testRunExcelDataExample() throws DroolsParserException, IOException, ClassNotFoundException {

    HSSFWorkbook hsWorkbook = new ExcelDataExample().runExcelDataExample();

    fail("Need to add checks on output"); // TODO
  }

}
TOP

Related Classes of net.firstpartners.sample.ExcelDataRules.ExcelDataExampleTest

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.