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.
By default, Apex tests saved in API version 24.0 and later cannot see preexisting organization records such as standard objects, custom objects, and custom settings; they can use only data they create, plus setup and metadata objects like User and Profile. Isolation keeps each test independent of the records that happen to exist in a sandbox, scratch org, or production, so the same test can pass or fail consistently across environments. When a test must query existing org records, annotating the class or method with @IsTest(SeeAllData=true) opens that access for queries, but the recommended practice is to keep tests in data silo with @IsTest(SeeAllData=false).