diff options
author | Dan Timoney <dtimoney@att.com> | 2018-10-04 13:22:10 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-10-04 13:22:10 +0000 |
commit | edefb5ef98807af1dfc6163da85584e4bc3a1e34 (patch) | |
tree | 6993f2e133e0218e6edae66829654e6d268aa8a2 /ms/controllerblueprints/modules | |
parent | 953d29f3c890b4b41bf6f970cbc4bb1d3cbbc4bf (diff) | |
parent | e581f0108af6ec4b70453d40c1b37f988962360a (diff) |
Merge "Added test file for ConfigModelService"
Diffstat (limited to 'ms/controllerblueprints/modules')
-rw-r--r-- | ms/controllerblueprints/modules/service/src/test/java/org/onap/ccsdk/apps/controllerblueprints/service/ConfigModelServiceTest.java | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/ms/controllerblueprints/modules/service/src/test/java/org/onap/ccsdk/apps/controllerblueprints/service/ConfigModelServiceTest.java b/ms/controllerblueprints/modules/service/src/test/java/org/onap/ccsdk/apps/controllerblueprints/service/ConfigModelServiceTest.java new file mode 100644 index 00000000..d6a71e01 --- /dev/null +++ b/ms/controllerblueprints/modules/service/src/test/java/org/onap/ccsdk/apps/controllerblueprints/service/ConfigModelServiceTest.java @@ -0,0 +1,36 @@ +/* + * Copyright © 2018 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 + * + * 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. + */ + +package org.onap.ccsdk.apps.controllerblueprints.service; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; +import java.lang.System; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintException; +import org.onap.ccsdk.apps.controllerblueprints.service.repository.ConfigModelContentRepository; +import org.onap.ccsdk.apps.controllerblueprints.service.repository.ConfigModelRepository; + +public class ConfigModelServiceTest { + private ConfigModelService configModelService; + + @Test(expected = NullPointerException.class) + public void testGetInitialConfigModel() throws BluePrintException { + Assert.assertEquals(null, configModelService.getInitialConfigModel("")); + } +} |