From cfd3def0150d9bfa56e1052396b1c8f7266ad16b Mon Sep 17 00:00:00 2001 From: felipeazv Date: Fri, 10 Nov 2017 07:57:09 +0100 Subject: [PATCH] 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 --- .../src/test/java/com/baeldung/test/BackwardChainingTest.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/drools/backward-chaining/src/test/java/com/baeldung/test/BackwardChainingTest.java b/drools/backward-chaining/src/test/java/com/baeldung/test/BackwardChainingTest.java index 676e941950..112188f01f 100644 --- a/drools/backward-chaining/src/test/java/com/baeldung/test/BackwardChainingTest.java +++ b/drools/backward-chaining/src/test/java/com/baeldung/test/BackwardChainingTest.java @@ -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;