diff options
author | lukegleeson <luke.gleeson@est.tech> | 2023-01-30 15:18:54 +0000 |
---|---|---|
committer | lukegleeson <luke.gleeson@est.tech> | 2023-01-30 15:21:02 +0000 |
commit | 3d878b0674cd61e64501dfe6564b8921e76056bb (patch) | |
tree | edbc5089294b859f0a33549178b1f9b8f9a36cee /integration-test/src | |
parent | f8e980af77800b819671310e0c55592b432285a9 (diff) |
Fix for integration test module tests
Added Fragment Native Repository to test config
Removed test profile
Issue-ID: CPS-1466
Signed-off-by: lukegleeson <luke.gleeson@est.tech>
Change-Id: Id845b713e760801be480aa9aea6cb304decd05b9
Diffstat (limited to 'integration-test/src')
-rw-r--r-- | integration-test/src/test/groovy/org/onap/cps/integration/TestConfig.groovy | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/integration-test/src/test/groovy/org/onap/cps/integration/TestConfig.groovy b/integration-test/src/test/groovy/org/onap/cps/integration/TestConfig.groovy index 273d7bb55a..33283f1f82 100644 --- a/integration-test/src/test/groovy/org/onap/cps/integration/TestConfig.groovy +++ b/integration-test/src/test/groovy/org/onap/cps/integration/TestConfig.groovy @@ -29,6 +29,7 @@ import org.onap.cps.spi.impl.CpsDataPersistenceServiceImpl import org.onap.cps.spi.impl.CpsModulePersistenceServiceImpl import org.onap.cps.spi.repository.AnchorRepository import org.onap.cps.spi.repository.DataspaceRepository +import org.onap.cps.spi.repository.FragmentNativeRepository import org.onap.cps.spi.repository.FragmentRepository import org.onap.cps.spi.repository.ModuleReferenceRepository import org.onap.cps.spi.repository.SchemaSetRepository @@ -69,6 +70,10 @@ class TestConfig extends Specification{ @Autowired @Lazy + FragmentNativeRepository fragmentNativeRepository + + @Autowired + @Lazy JsonObjectMapper jsonObjectMapper @Autowired @@ -86,7 +91,7 @@ class TestConfig extends Specification{ @Bean CpsDataPersistenceService cpsDataPersistenceService() { - return (CpsDataPersistenceService) new CpsDataPersistenceServiceImpl(dataspaceRepository, anchorRepository, fragmentRepository, jsonObjectMapper, stubbedSessionManager) + return (CpsDataPersistenceService) new CpsDataPersistenceServiceImpl(dataspaceRepository, anchorRepository, fragmentRepository, jsonObjectMapper, stubbedSessionManager, fragmentNativeRepository) } @Bean |