Salesforce Related Exams
PDI Exam
The Salesforce PDI (Platform Developer I) and PDII (Platform Developer II) exams are both designed to validate your skills as a Salesforce developer, but they target different levels of expertise and knowledge. Here’s a breakdown of the key differences:
Consider the following code snippet:
apex
CopyEdit
public class with sharing AccountsController {
@AuraEnabled
public List
return [SELECT Id, Name, Industry FROM Account];
}
}
Apex Test Class Snippet:
apex
CopyEdit
@isTest
private class with sharing AccountsController_Test {
@testSetup
private static void makeData(){
User user1 = [SELECT Id FROM User WHERE Profile.Name = 'System Administrator' AND isActive = true LIMIT 1];
User user2 = [SELECT Id FROM User WHERE Profile.Name = 'Standard User' AND UserName = 'test@test.com' AND isActive = true LIMIT 1];
TestUtils.insertAccounts(10, user1.Id);
TestUtils.insertAccounts(20, user2.Id);
}
@isTest
private static void getAllAccounts_StandardUser_Test(){
List
System.assertEquals(20, result.size());
}
}
When the test class runs, the assertion fails.
Which change should the developer implement in the Apex test method to ensure the test method executes successfully?
Which statement should be used to allow some of the records in a list of records to be inserted if others fail to be inserted?
When importing and exporting data into Salesforce, which two statements are true?
Choose 2 answers