BAEL-803: Backward Chaining with Drools - removed @RunWith (#3002)

* spring beans DI examples

* fix-1: shortening examples

* List of Rules Engines in Java

* BAEL-812: Openl-Tablets example added

* BAEL-812: artifacts names changed

* BAEL-812: moving rule-engines examples to rule-engines folder

* BAEL-812: removing evaluation article files

* BAEL-812: folder renamed

* BAEL-812: folder renamed

* BAEL-812: pom.xml - parent added

* BAEL-1027: Introduction to GraphQL - initial commit

* BAEL-781: Explore the new Spring Cloud Gateway

* BAEL-781: Fix UserService.java

* BAEL-781: Fix user-service pom.xml

* BAEL-781: remove eureka-server from the example

* BAEL-781: modifying example

* BAEL-803: Backward Chaining wih Drools

* BAEL-803: pom.xml

* BAEL-803: Backward Chaining with Drools - new example

* BAEL-803: Backward Chaining with Drools - parent module

* BAEL-803: Backward Chaining with Drools - parent module

* BAEL-803: Backward Chaining with Drools - meta-inf/maven-fix

* BAEL-803: Backward Chaining with Drools - drools parent module

* BAEL-803: Backward Chaining with Drools - removed @RunWith
This commit is contained in:
felipeazv 2017-11-10 07:57:09 +01:00 committed by Grzegorz Piwowarek
parent a0efd94117
commit cfd3def015
1 changed files with 0 additions and 3 deletions

View File

@ -2,8 +2,6 @@ package com.baeldung.test;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
import org.kie.api.KieServices;
import org.kie.api.runtime.KieContainer;
import org.kie.api.runtime.KieSession;
@ -13,7 +11,6 @@ import com.baeldung.drools.model.Result;
import static junit.framework.TestCase.assertEquals;
@RunWith(value = JUnit4.class)
public class BackwardChainingTest {
private Result result;
private KieServices ks;