Checklist progress
0/194Learned
Platform Developer
Study Checklist
Checklist progress
0/194Learned
Write and execute tests for triggers, controllers, classes, and flows using various sources of test data.
0/14
Apex test class and test method syntax
Learn this conceptCode coverage requirements for Apex deployment
Learn this conceptExecuting Apex tests and test suites
Learn this conceptTest data isolation versus SeeAllData
Learn this conceptTestSetup methods for shared test data
Learn this conceptTest utility classes for reusable test data
Learn this conceptStatic resource CSV files as test data
Learn this conceptTest.startTest and Test.stopTest
Learn this conceptPositive, negative, and bulk Apex tests
Learn this conceptTests for Visualforce and Lightning Apex controllers
Learn this conceptFixed SOSL results in Apex tests
Learn this conceptFlow Builder tests before activation
Learn this conceptGiven a scenario, know how and when to use the Salesforce Developer tools such as Salesforce DX, Salesforce CLI, and Developer Console.
0/5
Describe how to approach debugging system issues and monitoring flows, performance, asynchronous, and batch jobs.
0/14
Describe the environments, requirements, and process for deploying code and associated configurations.
0/8
Prepare for the Exam
Study Community
Ask questions and get the latest info from other Platform Developer studiers.
Test.startTest and Test.stopTest mark the start and end of the work you actually want to measure in an Apex unit test. Code before startTest is for setup (variables and test data) so that preparation does not spend the same governor-limit budget as the code under test. They also collect asynchronous work started after startTest and run it synchronously when stopTest executes, so you can assert results in the same test method.