diff options
author | Liam Fallon <liam.fallon@ericsson.com> | 2018-06-27 07:40:08 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-06-27 07:40:08 +0000 |
commit | b401754031d70b43ac1b1ee28256ea29add7ebf3 (patch) | |
tree | d480df85f784fa3dfc2d476a1ea0320d2491a9ec /ONAP-XACML/src/test | |
parent | 29c8effb13eab61c5697e81a7593eac051272a0c (diff) | |
parent | 983424a7a914c6519a0eb244d13bdba4b7c18a4f (diff) |
Merge "Fix console warning about xacml.properties"
Diffstat (limited to 'ONAP-XACML/src/test')
-rw-r--r-- | ONAP-XACML/src/test/java/org/onap/policy/xacml/test/util/AAFEngineTest.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ONAP-XACML/src/test/java/org/onap/policy/xacml/test/util/AAFEngineTest.java b/ONAP-XACML/src/test/java/org/onap/policy/xacml/test/util/AAFEngineTest.java index 684f48c17..f60645fef 100644 --- a/ONAP-XACML/src/test/java/org/onap/policy/xacml/test/util/AAFEngineTest.java +++ b/ONAP-XACML/src/test/java/org/onap/policy/xacml/test/util/AAFEngineTest.java @@ -30,12 +30,14 @@ import com.att.research.xacml.api.pip.PIPRequest; import com.att.research.xacml.api.pip.PIPResponse; import com.att.research.xacml.std.pip.StdPIPFinderFactory; import com.att.research.xacml.std.pip.StdPIPRequest; +import com.att.research.xacml.util.XACMLProperties; import com.att.research.xacml.api.XACML3; public class AAFEngineTest { @Test public void aafEngineTest(){ String testId = "testId"; + System.setProperty(XACMLProperties.XACML_PROPERTIES_NAME, "xacml.properties"); AAFEngine aafEngine = new AAFEngine(); assertTrue(AAFEngine.DEFAULT_DESCRIPTION.equals("PIP for authenticating aaf attributes using the AAF REST interface")); assertTrue(AAFEngine.DEFAULT_ISSUER.equals("aaf")); |