Expand my Community achievements bar.

Adobe Summit 2025: AEM Session Recordings Are Live! Missed a session or want to revisit your favorites? Watch the latest recordings now.
SOLVED

AEM Developer Certification Question - AEM Unit Testing

Avatar

Level 3
An AEM application msut implement user testing using AEM Mocks.
Which two service does the Class AemContext provide developers access to? (Choose two)

A. Session

B. FlushAgent

C. TagManager

D.WorkflowSession

E. ModelFactory
Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @S__k__Agarwal 

 

I would say TagManager and ModelFactory:

Provides various common required mock objects and helpers such as SlingHttpServletRequest objects, various mock Sling and AEM OSGi services such as ModelFactory, PageManager, Page, Template, ComponentManager, Component, TagManager, Tag, etc. 

 

Source: https://experienceleague.adobe.com/en/docs/experience-manager-learn/getting-started-wknd-tutorial-de...

View solution in original post

3 Replies

Avatar

Correct answer by
Community Advisor

Hi @S__k__Agarwal 

 

I would say TagManager and ModelFactory:

Provides various common required mock objects and helpers such as SlingHttpServletRequest objects, various mock Sling and AEM OSGi services such as ModelFactory, PageManager, Page, Template, ComponentManager, Component, TagManager, Tag, etc. 

 

Source: https://experienceleague.adobe.com/en/docs/experience-manager-learn/getting-started-wknd-tutorial-de...

Avatar

Community Advisor

Hi @S__k__Agarwal 

AEM Mocks provides developers access to the following services:

  1. TagManager (Option C)
  2. ModelFactory (Option E)


Avatar

Community Advisor

The two services that the AemContext class provides developers access to are:
1. TagManager (C)

2. ModelFactory (E)
These services are commonly used for unit testing in AEM, providing mock objects and helpers like SlingHttpServletRequest, ModelFactory, and TagManager.