diff options
author | jhh <jorge.hernandez-herrero@att.com> | 2021-02-18 13:32:16 -0600 |
---|---|---|
committer | jhh <jorge.hernandez-herrero@att.com> | 2021-02-19 08:24:29 -0600 |
commit | d6083133bac5c1a54681a004468d416993d47d7f (patch) | |
tree | e99be71f5346b634150eebd2875f4f79b640a988 /policy-utils/src | |
parent | dd8c5ad785a19c3af7249808aa01fe4f04abc61e (diff) |
remove TransMetric - not needed
Issue-ID: POLICY-3033
Signed-off-by: jhh <jorge.hernandez-herrero@att.com>
Change-Id: I626de45b528bb891c79900085bfe783fe248b3fa
Signed-off-by: jhh <jorge.hernandez-herrero@att.com>
Diffstat (limited to 'policy-utils/src')
-rw-r--r-- | policy-utils/src/main/java/org/onap/policy/drools/metrics/TransMetric.java | 37 | ||||
-rw-r--r-- | policy-utils/src/test/java/org/onap/policy/drools/metrics/TransMetricTest.java | 69 |
2 files changed, 0 insertions, 106 deletions
diff --git a/policy-utils/src/main/java/org/onap/policy/drools/metrics/TransMetric.java b/policy-utils/src/main/java/org/onap/policy/drools/metrics/TransMetric.java deleted file mode 100644 index 21f3fadd..00000000 --- a/policy-utils/src/main/java/org/onap/policy/drools/metrics/TransMetric.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * ============LICENSE_START======================================================= - * ONAP - * ================================================================================ - * Copyright (C) 2021 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.metrics; - -import lombok.Data; -import lombok.EqualsAndHashCode; -import lombok.NoArgsConstructor; -import lombok.ToString; - -/** - * Transaction Metric that models a complete policy transaction. - */ - -@Data -@NoArgsConstructor -@ToString(callSuper = true) -@EqualsAndHashCode(callSuper = true) -public class TransMetric extends Metric { -} diff --git a/policy-utils/src/test/java/org/onap/policy/drools/metrics/TransMetricTest.java b/policy-utils/src/test/java/org/onap/policy/drools/metrics/TransMetricTest.java deleted file mode 100644 index e3e8fb79..00000000 --- a/policy-utils/src/test/java/org/onap/policy/drools/metrics/TransMetricTest.java +++ /dev/null @@ -1,69 +0,0 @@ -/* - * ============LICENSE_START======================================================= - * Copyright (C) 2021 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. - * - * SPDX-License-Identifier: Apache-2.0 - * ============LICENSE_END========================================================= - */ - -package org.onap.policy.drools.metrics; - -import static org.assertj.core.api.Assertions.assertThat; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotEquals; - -import com.openpojo.reflection.PojoClass; -import com.openpojo.reflection.impl.PojoClassFactory; -import com.openpojo.validation.Validator; -import com.openpojo.validation.ValidatorBuilder; -import com.openpojo.validation.rule.impl.GetterMustExistRule; -import com.openpojo.validation.rule.impl.SetterMustExistRule; -import com.openpojo.validation.test.impl.GetterTester; -import com.openpojo.validation.test.impl.SetterTester; -import org.junit.Test; - -public class TransMetricTest { - - @Test - public void testPojo() { - PojoClass metric = PojoClassFactory.getPojoClass(TransMetric.class); - Validator val = ValidatorBuilder - .create() - .with(new SetterMustExistRule()) - .with(new GetterMustExistRule()) - .with(new SetterTester()) - .with(new GetterTester()) - .build(); - val.validate(metric); - } - - @Test - public void testEqualsToString() { - TransMetric trans1 = new TransMetric(); - TransMetric trans2 = new TransMetric(); - - assertEquals(trans1, trans2); - - trans1.setRequestId(null); - assertNotEquals(trans1, trans2); - - trans1.setRequestId("a"); - trans2.setRequestId("a"); - assertEquals(trans1, trans2); - - assertThat(trans1.toString()).startsWith("TransMetric"); - } - -}
\ No newline at end of file |