Package net.firstpartners.sample.EventRules

Source Code of net.firstpartners.sample.EventRules.EventRulesExampleTest

package net.firstpartners.sample.EventRules;

import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.fail;

import java.io.IOException;

import net.firstpartners.sample.EventRules.CustomerOrder;
import net.firstpartners.sample.EventRules.EventRulesExample;

import org.drools.compiler.DroolsParserException;
import org.junit.Test;

public class EventRulesExampleTest {

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

    EventRulesExample thisSample = new EventRulesExample();
    CustomerOrder co = thisSample.runEventRulesExample();

    assertNotNull(co);

    fail("Assertions Not yet implemented"); // TODO
  }

}
TOP

Related Classes of net.firstpartners.sample.EventRules.EventRulesExampleTest

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.