Unit testing rule

Which two conditions do you test with a unit test? (Choose Two) A. A data page populates without any errors. B. A property value is set correctly by a data transform. C. An application displays user views for 20 users within three seconds. D. An application is successfully migrated to a test system.

The correct conditions to test with a unit test are when a data page populates without any errors and when a property value is set correctly by a data transform. Unit testing focuses on validating the correctness of individual rules and rule logic in isolation. It ensures that configurations like data pages and data transforms are working as expected. It does not include performance checks or deployment verification. It only confirms that the rule produces the correct functional output.