QuestionQ59
TestingWhich two statements correctly explain why Mock objects are necessary when writing test classes?
Choose two
- A Mock can also be used on the classes that extend the batchable interface to bypass the batch jobs.
- B Using a Mock allows the test class to bypass the dependencies of other objects, methods, state, or behaviors. Therefore, the developer has total control of his own code.
- C A Mock is needed whenever the code makes an HTTP callout.
- D Some methods are invoking long running processes, using Mock is a shortcut of bypassing the long executions.
Community Discussion