Expand my Community achievements bar.

[UnitTest] @Self Annotation using Mangeto and a CIF Model within custom Model

Avatar

Level 2

Hi Community, 

 

I'm trying to write my Unit test for a model created to interact with the MagentoGraphqlClient Object. 

My doubt here comes when I need to inject a mocked object using the @Deleted Account  annotation.

 

@Self(injectionStrategy = InjectionStrategy.OPTIONAL)
private MagentoGraphqlClient magentoGraphqlClient;

 Also for a CIF Model that is being called within my custom model.

@Self(injectionStrategy = InjectionStrategy.OPTIONAL)
@Via(type = ResourceSuperType.class)
private com.adobe.cq.commerce.core.components.models.productlist.ProductList productList;

 Does anybody have any idea how can I inject these mocked objects and interact with the returning values within my Model?

 

Regards.

3 Replies

Avatar

Level 2

Thanks for sharing this information, I did take a look before but this is not providing too much information about this case.