Microsoft Dynamics 365: Finance and Operations Apps Developer — Question 41
A company is implementing Dynamics 365 finance and operations apps.
You are using the Acceptance test library (ATL) to test code in Visual Studio.
You need to create an entity test class to expose the entity properties.
Which method should you use?
Answer options
- A. parm
- B. with
- C. set
Correct answer: A
Explanation
The 'parm' method is used to define properties in an entity class in Dynamics 365, allowing the properties to be exposed for testing. The 'with' method is typically used for setting values but does not directly create an entity property. The 'set' method is not applicable in this context, as it does not serve the purpose of exposing entity properties.