This commit is contained in:
nheron 2021-02-24 18:26:43 +01:00
commit cf57ac1a1b
8 changed files with 39 additions and 10 deletions

View file

@ -33,4 +33,8 @@ public class TestHistoryListener implements HistoryListener {
public boolean withDetails() {
return withDetails;
}
@Override
public void setDetails(Boolean details) {
withDetails = details;
}
}

View file

@ -39,7 +39,9 @@ public class RuleBaseStatefulSessionTestCase {
public void fireEvent(HistoryEvent newHistoryEvent) throws DroolsChtijbugException {
}
@Override
public void setDetails(Boolean details) {
}
@Override
public boolean withDetails() {
return true;

View file

@ -39,7 +39,9 @@ public class FactHistoryEventTest {
public void fireEvent(HistoryEvent newHistoryEvent) throws DroolsChtijbugException {
historyEvents.add(newHistoryEvent);
}
@Override
public void setDetails(Boolean details) {
}
@Override
public boolean withDetails() {
return true;
@ -138,7 +140,9 @@ public class FactHistoryEventTest {
public void fireEvent(HistoryEvent newHistoryEvent) throws DroolsChtijbugException {
historyEvents.add(newHistoryEvent);
}
@Override
public void setDetails(Boolean details) {
}
@Override
public boolean withDetails() {
return true;

View file

@ -42,7 +42,9 @@ public class KnowledgeBaseHistoryEventTest {
public void fireEvent(HistoryEvent newHistoryEvent) throws DroolsChtijbugException {
historyEvents.add(newHistoryEvent);
}
@Override
public void setDetails(Boolean details) {
}
@Override
public boolean withDetails() {
return true;
@ -86,7 +88,9 @@ public class KnowledgeBaseHistoryEventTest {
public void fireEvent(HistoryEvent newHistoryEvent) throws DroolsChtijbugException {
historyEvents.add(newHistoryEvent);
}
@Override
public void setDetails(Boolean details) {
}
@Override
public boolean withDetails() {
return true;
@ -155,7 +159,9 @@ public class KnowledgeBaseHistoryEventTest {
public void fireEvent(HistoryEvent newHistoryEvent) throws DroolsChtijbugException {
historyEvents.add(newHistoryEvent);
}
@Override
public void setDetails(Boolean details) {
}
@Override
public boolean withDetails() {
return true;

View file

@ -41,7 +41,9 @@ public class RuleBaseHistoryEventTest {
public void fireEvent(HistoryEvent newHistoryEvent) throws DroolsChtijbugException {
historyEvents.add(newHistoryEvent);
}
@Override
public void setDetails(Boolean details) {
}
@Override
public boolean withDetails() {
return true;

View file

@ -45,7 +45,9 @@ public class RuleHistoryEventTest {
public void fireEvent(HistoryEvent newHistoryEvent) throws DroolsChtijbugException {
historyEvents.add(newHistoryEvent);
}
@Override
public void setDetails(Boolean details) {
}
@Override
public boolean withDetails() {
return true;
@ -90,7 +92,9 @@ public class RuleHistoryEventTest {
public void fireEvent(HistoryEvent newHistoryEvent) throws DroolsChtijbugException {
historyEvents.add(newHistoryEvent);
}
@Override
public void setDetails(Boolean details) {
}
@Override
public boolean withDetails() {
return true;