How to write Unit Tests with ServiceLocator

The service locator pattern is a design pattern used in software development to encapsulate the processes involved in obtaining a service with a strong abstraction layer. We already mention it in our article: How to develop a flexible Apex code for Salesforce.

Salesforce Unit Test Best Practices

Testing is the key to successful long-term development and is a critical component of the development process. Unit tests validate that your application works as expected, that there are no unexpected behaviors. Apex provides a testing framework that allows you to write unit tests, run your tests, check test results, and have code coverage results.

How to increase code coverage quickly in Salesforce

One of the requirements from Salesforce to deploy Apex code to the production environment or upload package to the Salesforce AppExchange related with Ape[ code coverage. Unit tests must cover at least 75% of your Apex code, and those tests must pass. Code coverage indicates how many executable lines of code in your classes and […]