diff options
author | Smokowski, Steve (ss835w) <ss835w@us.att.com> | 2018-08-14 16:30:49 -0400 |
---|---|---|
committer | Smokowski, Steve (ss835w) <ss835w@us.att.com> | 2018-08-15 13:26:36 -0400 |
commit | c4e03f8a933ce35044597ec44d40848cf7957bf5 (patch) | |
tree | 3ebdddc3fafee4af9dd5e5e7ce5d19e46e5bef2b /mso-catalog-db/src/test | |
parent | 26aefcd7cc7a4959ba9e98653f4cd3f872c69b34 (diff) |
Cloud Config Updates
Update Cloud Config to be writable over REST API. This allows easier
environment setup, so sql scripts are not required
Issue-ID: SO-862
Change-Id: I70931f09ff2600a15094199f46fc8d9ac36403f4
Change-Id: I70931f09ff2600a15094199f46fc8d9ac36403f4
Signed-off-by: Smokowski, Steve (ss835w) <ss835w@us.att.com>
Diffstat (limited to 'mso-catalog-db/src/test')
-rw-r--r-- | mso-catalog-db/src/test/java/org/onap/so/db/catalog/data/repository/CloudIdentityRepositoryTest.java | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/mso-catalog-db/src/test/java/org/onap/so/db/catalog/data/repository/CloudIdentityRepositoryTest.java b/mso-catalog-db/src/test/java/org/onap/so/db/catalog/data/repository/CloudIdentityRepositoryTest.java deleted file mode 100644 index 8fb65c2080..0000000000 --- a/mso-catalog-db/src/test/java/org/onap/so/db/catalog/data/repository/CloudIdentityRepositoryTest.java +++ /dev/null @@ -1,21 +0,0 @@ -package org.onap.so.db.catalog.data.repository; - -import org.junit.Assert; -import org.junit.Test; -import org.onap.so.BaseTest; -import org.onap.so.db.catalog.beans.CloudIdentity; -import org.springframework.beans.factory.annotation.Autowired; - -public class CloudIdentityRepositoryTest extends BaseTest { - - @Autowired - private CloudIdentityRepository cloudIdentityRepository; - - @Test - public void findOneTest() throws Exception { - CloudIdentity cloudIdentity = cloudIdentityRepository.findOne("mtn13"); - Assert.assertNotNull(cloudIdentity); - Assert.assertEquals("mtn13",cloudIdentity.getId()); - } - -}
\ No newline at end of file |