aboutsummaryrefslogtreecommitdiffstats
path: root/UniversalVesAdapter/src/test/java/org/onap/dcaegen2/ves/domain/AdditionalParameterTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'UniversalVesAdapter/src/test/java/org/onap/dcaegen2/ves/domain/AdditionalParameterTest.java')
-rw-r--r--UniversalVesAdapter/src/test/java/org/onap/dcaegen2/ves/domain/AdditionalParameterTest.java173
1 files changed, 0 insertions, 173 deletions
diff --git a/UniversalVesAdapter/src/test/java/org/onap/dcaegen2/ves/domain/AdditionalParameterTest.java b/UniversalVesAdapter/src/test/java/org/onap/dcaegen2/ves/domain/AdditionalParameterTest.java
deleted file mode 100644
index 9b64ddd..0000000
--- a/UniversalVesAdapter/src/test/java/org/onap/dcaegen2/ves/domain/AdditionalParameterTest.java
+++ /dev/null
@@ -1,173 +0,0 @@
-/*
-* ============LICENSE_START=======================================================
-* ONAP : DCAE
-* ================================================================================
-* Copyright 2018 TechMahindra
-*=================================================================================
-* 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.dcaegen2.ves.domain;
-
-import static org.junit.Assert.assertNotNull;
-
-import java.util.Map;
-
-import org.junit.Test;
-
-public class AdditionalParameterTest {
-
- private AdditionalParameter createTestSubject() {
- return new AdditionalParameter();
- }
-
- @Test
- public void testGetCriticality() throws Exception {
- AdditionalParameter testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getCriticality();
-
- }
-
- @Test
- public void testSetCriticality() throws Exception {
- AdditionalParameter testSubject;
- String criticality = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setCriticality(criticality);
- }
-
- @Test
- public void testGetName() throws Exception {
- AdditionalParameter testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getName();
-
- }
-
- @Test
- public void testSetName() throws Exception {
- AdditionalParameter testSubject;
- String name = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setName(name);
- }
-
- @Test
- public void testGetThresholdCrossed() throws Exception {
- AdditionalParameter testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getThresholdCrossed();
-
- }
-
- @Test
- public void testSetThresholdCrossed() throws Exception {
- AdditionalParameter testSubject;
- String thresholdCrossed = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setThresholdCrossed(thresholdCrossed);
- }
-
- @Test
- public void testGetValue() throws Exception {
- AdditionalParameter testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getValue();
-
- }
-
- @Test
- public void testSetValue() throws Exception {
- AdditionalParameter testSubject;
- String value = "";
-
- // default test
- testSubject = createTestSubject();
- testSubject.setValue(value);
- }
-
- @Test
- public void testGetAdditionalProperties() throws Exception {
- AdditionalParameter testSubject;
- Map<String, Object> result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.getAdditionalProperties();
-
- }
-
- @Test
- public void testSetAdditionalProperty() throws Exception {
- AdditionalParameter testSubject;
- String name = "";
- Object value = null;
-
- // default test
- testSubject = createTestSubject();
- testSubject.setAdditionalProperty(name, value);
- }
-
- @Test
- public void testToString() throws Exception {
- AdditionalParameter testSubject;
- String result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.toString();
-
- }
-
- @Test
- public void testHashCode() throws Exception {
- AdditionalParameter testSubject;
- int result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.hashCode();
-
- }
-
- @Test
- public void testEquals() throws Exception {
- AdditionalParameter testSubject;
- Object other = null;
- boolean result;
-
- // default test
- testSubject = createTestSubject();
- result = testSubject.equals(other);
-
- }
-} \ No newline at end of file