diff options
author | Jorge Hernandez <jh1730@att.com> | 2018-01-31 12:31:05 -0600 |
---|---|---|
committer | Jorge Hernandez <jh1730@att.com> | 2018-01-31 13:23:20 -0600 |
commit | aa69a4db58140af6a605cadd3b8e6166f59d97ad (patch) | |
tree | 07b1c15b2f95421370e2f282485665cadb8ba241 /policy-management/src/main/java/org | |
parent | 9e2820c5820b3904e03cb7a4cb4292e864b1ca2b (diff) |
junits+utils to generate/test rules applications
1. utilities to generate rules applications and installing
in local maven repository programmatically.
2. using these utilities, use policy abstractions, ie.
controllers, containers, .. to junit test it.
Change-Id: I13c35e631a1120fad503feef2593d32a99e3358f
Issue-ID: POLICY-583
Signed-off-by: Jorge Hernandez <jh1730@att.com>
Diffstat (limited to 'policy-management/src/main/java/org')
-rw-r--r-- | policy-management/src/main/java/org/onap/policy/drools/controller/DroolsControllerFactory.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/policy-management/src/main/java/org/onap/policy/drools/controller/DroolsControllerFactory.java b/policy-management/src/main/java/org/onap/policy/drools/controller/DroolsControllerFactory.java index 31b7cec7..0b9f9887 100644 --- a/policy-management/src/main/java/org/onap/policy/drools/controller/DroolsControllerFactory.java +++ b/policy-management/src/main/java/org/onap/policy/drools/controller/DroolsControllerFactory.java @@ -212,7 +212,7 @@ class IndexedDroolsControllerFactory implements DroolsControllerFactory { List<TopicCoderFilterConfiguration> topics2DecodedClasses2Filters = new ArrayList<>(); - if (topicEntities.isEmpty()) + if (topicEntities == null || topicEntities.isEmpty()) return topics2DecodedClasses2Filters; for (Topic topic: topicEntities) { |