X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=src%2Ftest%2Fjava%2Forg%2Fonap%2Fmusic%2Funittests%2Fjsonobjects%2FJsonOnboardTest.java;h=f7a1576abda6f5dabd025ecc832c02b94dbb5425;hb=0cbcf95e8bb433edea1c917aa0e557d23937c8da;hp=1e66ed58cdeb1d4f9d6b7877879612078db0b2a6;hpb=0ef26619ea167f455e907db7998792b5114fb1dd;p=music.git diff --git a/src/test/java/org/onap/music/unittests/jsonobjects/JsonOnboardTest.java b/src/test/java/org/onap/music/unittests/jsonobjects/JsonOnboardTest.java index 1e66ed58..f7a1576a 100644 --- a/src/test/java/org/onap/music/unittests/jsonobjects/JsonOnboardTest.java +++ b/src/test/java/org/onap/music/unittests/jsonobjects/JsonOnboardTest.java @@ -4,6 +4,8 @@ * =================================================================== * Copyright (c) 2017 AT&T Intellectual Property * =================================================================== + * Modifications Copyright (c) 2019 IBM. + * =================================================================== * 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 @@ -19,7 +21,7 @@ * ============LICENSE_END============================================= * ==================================================================== */ - + package org.onap.music.unittests.jsonobjects; import static org.junit.Assert.*; @@ -75,5 +77,12 @@ public class JsonOnboardTest { assertEquals(aaf,jo.getIsAAF()); } + + @Test + public void testKeyspace() { + jo.setKeyspace_name("Keyspace"); + assertEquals("Keyspace",jo.getKeyspace()); + + } }