A developer wants their private helper method to be covered by a test class in a different file. What is the correct approach?
-
A
Change the method to global access
-
B
Add @TestVisible to the private method
-
C
Move the method to an inner class and make the inner class public
-
D
Create a public wrapper method that delegates to the private method