/** * ============LICENSE_START======================================================= * org.onap.aai * ================================================================================ * Copyright © 2017-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.aai.schemagen.genxsd; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameters; import java.util.Arrays; import java.util.Collection; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; @RunWith(Parameterized.class) public class DeleteFootnoteSetTest { String targetNode; String flavor; String result; DeleteFootnoteSet footnotes = null; @Parameters public static Collection testConditions() { String inputs [][] = { {"vserver","(1)", "\n -(1) IF this VSERVER node is deleted, this FROM node is DELETED also\n"}, {"ctag-pool","(2)", "\n -(2) IF this CTAG-POOL node is deleted, this TO node is DELETED also\n"}, {"pserver","(3)", "\n -(3) IF this FROM node is deleted, this PSERVER is DELETED also\n"}, {"oam-network","(4)", "\n -(4) IF this TO node is deleted, this OAM-NETWORK is DELETED also\n"}, {"dvs-switch","(1)", "\n -(1) IF this DVS-SWITCH node is deleted, this FROM node is DELETED also\n"}, {"availability-zone","(3)", "\n -(3) IF this FROM node is deleted, this AVAILABILITY-ZONE is DELETED also\n"} }; return (Arrays.asList(inputs)); } public DeleteFootnoteSetTest(String targetNode, String flavor, String result) { super(); this.targetNode = targetNode; this.flavor = flavor; this.result=result; } @Before public void setUp() throws Exception { footnotes = new DeleteFootnoteSet(this.targetNode); } @Test public void testDeleteFootnoteSet() { assertThat(footnotes.targetNode, is(this.targetNode)); } @Test public void testAdd() { footnotes.add(this.flavor); assertThat(footnotes.footnotes.size(), is(1)); } @Test public void testToString() { footnotes.add(this.flavor); assertThat(footnotes.toString(), is(this.result)); } }