Which two statements are accurate about why Mock objects are needed when writing test classes? (Choose two.)
Select all that apply, then click Submit answer.
-
○
Mock can also be used on the classes that extend the batchable interface to bypass the batch jobs.
-
○
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.
-
○
A Mock is needed whenever the code makes an HTTP callout.
-
○
Some methods are invoking long running processes, using Mock is a shortcut of bypassing the long executions.