aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/resources
diff options
context:
space:
mode:
authorDmitry Puzikov <d.puzikov2@partner.samsung.com>2020-03-24 18:22:03 +0100
committerOfir Sonsino <ofir.sonsino@intl.att.com>2020-03-25 13:58:20 +0000
commitbca8dd9ac181bde35c9f89766e86855d9ddd2102 (patch)
tree678cda121c50186eab5c2493c86724f27e0fde78 /catalog-be/src/test/resources
parentcb10a6cc9f65ef69c3c8a29a9ea3312adfe814e4 (diff)
Fix unit tests
Add asserts where required, fix tiny issues. Replace getters-setters with Lombok annotations. Change-Id: Icb1a20f400fd8732a3d0ae23b8fe88bc693df1f5 Issue-ID: SDC-2853 Signed-off-by: Dmitry Puzikov <d.puzikov2@partner.samsung.com>
Diffstat (limited to 'catalog-be/src/test/resources')
-rw-r--r--catalog-be/src/test/resources/application-context-test.xml38
1 files changed, 22 insertions, 16 deletions
diff --git a/catalog-be/src/test/resources/application-context-test.xml b/catalog-be/src/test/resources/application-context-test.xml
index a9de54cd12..c45680ca90 100644
--- a/catalog-be/src/test/resources/application-context-test.xml
+++ b/catalog-be/src/test/resources/application-context-test.xml
@@ -7,20 +7,26 @@
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
<context:annotation-config />
- <aop:aspectj-autoproxy proxy-target-class="true" />
- <bean id="fileChangeListener" class=" org.openecomp.sdc.common.impl.ConfigFileChangeListener" />
- <bean id="fsConfig" class="org.openecomp.sdc.common.impl.FSConfigurationSource">
- <constructor-arg ref="fileChangeListener" />
- <constructor-arg value="src/test/resources/config/catalog-be"/>
- </bean>
- <bean class="org.openecomp.sdc.be.config.ConfigurationManager">
- <constructor-arg ref="fsConfig"/>
- </bean>
- <bean class="org.openecomp.sdc.be.components.distribution.engine.DmaapConsumer"/>
- <bean class="org.openecomp.sdc.be.components.distribution.engine.DmaapClientFactory" />
- <bean class="org.openecomp.sdc.be.components.distribution.engine.ExecutorFactory" />
- <bean class="org.openecomp.sdc.be.components.distribution.engine.DmaapHealth" />
- <bean class="org.openecomp.sdc.be.catalog.impl.DmaapProducerHealth" />
- <bean class="org.openecomp.sdc.be.catalog.impl.DmaapProducer" />
-
+ <aop:aspectj-autoproxy proxy-target-class="true"/>
+ <bean id="fileChangeListener" class=" org.openecomp.sdc.common.impl.ConfigFileChangeListener"/>
+ <bean id="fsConfig" class="org.openecomp.sdc.common.impl.FSConfigurationSource">
+ <constructor-arg ref="fileChangeListener"/>
+ <constructor-arg value="src/test/resources/config/catalog-be"/>
+ </bean>
+ <bean class="org.openecomp.sdc.be.config.ConfigurationManager">
+ <constructor-arg ref="fsConfig"/>
+ </bean>
+ <bean class="org.openecomp.sdc.be.components.distribution.engine.DmaapConsumer"/>
+ <bean class="org.openecomp.sdc.be.components.distribution.engine.DmaapClientFactory"/>
+ <bean class="org.openecomp.sdc.be.components.distribution.engine.ExecutorFactory"/>
+ <bean class="org.openecomp.sdc.be.components.distribution.engine.DmaapHealth"/>
+ <bean class="org.openecomp.sdc.be.catalog.impl.DmaapProducerHealth"/>
+ <bean class="org.openecomp.sdc.be.catalog.impl.DmaapProducer"/>
+ <bean class="org.openecomp.sdc.be.impl.ServletUtils"/>
+ <bean id="componentUtils" class="org.mockito.Mockito" factory-method="mock">
+ <constructor-arg value="org.openecomp.sdc.be.impl.ComponentsUtils" />
+ </bean>
+ <bean id="userAdmin" class="org.mockito.Mockito" factory-method="mock">
+ <constructor-arg value="org.openecomp.sdc.be.user.UserBusinessLogic" />
+ </bean>
</beans>