Microsoft Dynamics 365: Finance and Operations Apps Developer — Question 7

You are using the SysTest framework to test code in Visual Studio.
You need to create a unit test class.
Which three attributes can you use to create the class? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.

Answer options

Correct answer: A, B, C

Explanation

The correct attributes for defining a unit test class in the SysTest framework are TestFilter, Priority, and Owner. TestFilter is used to specify which tests to include or exclude, Priority helps to prioritize tests, and Owner indicates who is responsible for the test. EntryPoint and Test Property are not standard attributes for creating a unit test class in this context.