Test Execution Dashboard
Salesforce dashboard for monitoring Test Execution time long term intended to encourage writing faster tests.
Testing on the Salesforce platform. Mainly Apex Unit Testing and related topics like Mocking or Test Data creation.
Salesforce dashboard for monitoring Test Execution time long term intended to encourage writing faster tests.
TL; DR; Apex utility wrapping DML operations and logging their results consistently. And a mock version of the same allowing to do “pretend” DML in Unit Tests. Full source on GitHub (link). The Problem Not really a problem to be honest. It started with a desire to reduce duplication in… Read More »DML (Mock) Service
Writing good tests is hard. Complex repetitive setup code is often seen and tests run very slow. One way to improve is to gradually introduce mocking. The post tries to make this as easy as possible.