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.
In an Apex test, a SOSL (Salesforce Object Search Language) query returns an empty set of search results so the test always behaves in a predictable way. If you need the query to return records, call Test.setFixedSearchResults with a list of record IDs. Later SOSL queries in that test method then return those IDs instead of an empty list.