From ecf719c9cee21ff7aac0f868cb72704ab5ed4497 Mon Sep 17 00:00:00 2001 From: Jorge Hernandez Date: Wed, 7 Feb 2018 15:36:34 -0600 Subject: expose immutable list of filters to its users + additional related junits Change-Id: I00293cd9aa911dfb3d658cad4ee0441ad3410e9c Issue-ID: POLICY-164 Signed-off-by: Jorge Hernandez --- .../org/onap/policy/drools/utils/TripleTest.java | 60 ++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 policy-utils/src/test/java/org/onap/policy/drools/utils/TripleTest.java (limited to 'policy-utils/src/test/java') diff --git a/policy-utils/src/test/java/org/onap/policy/drools/utils/TripleTest.java b/policy-utils/src/test/java/org/onap/policy/drools/utils/TripleTest.java new file mode 100644 index 00000000..cdb93e8a --- /dev/null +++ b/policy-utils/src/test/java/org/onap/policy/drools/utils/TripleTest.java @@ -0,0 +1,60 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP + * ================================================================================ + * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============LICENSE_END========================================================= + */ + +package org.onap.policy.drools.utils; + +import org.junit.Assert; +import org.junit.Test; + +public class TripleTest { + + @Test + public void test() { + Triple triple = + new Triple("one", "two", "three"); + + Assert.assertTrue("one".equals(triple.first())); + Assert.assertTrue("one".equals(triple.getFirst())); + + Assert.assertTrue("two".equals(triple.second())); + Assert.assertTrue("two".equals(triple.getSecond())); + + Assert.assertTrue("three".equals(triple.third())); + Assert.assertTrue("three".equals(triple.getThird())); + + triple.first("I"); + Assert.assertTrue("I".equals(triple.first())); + + triple.setFirst("1"); + Assert.assertTrue("1".equals(triple.first())); + + triple.second("2"); + Assert.assertTrue("2".equals(triple.second())); + + triple.setSecond("II"); + Assert.assertTrue("II".equals(triple.second())); + + triple.third("3"); + Assert.assertTrue("3".equals(triple.third())); + + triple.setThird("III"); + Assert.assertTrue("III".equals(triple.third())); + } +} \ No newline at end of file -- cgit 1.2.3-korg