Which code snippet ...
 
Notifications
Clear all

Which code snippet will assert that the remote action returned the correct Account?

1 Posts
1 Users
0 Likes
158 Views
(@hevesywilber)
Noble Member
Joined: 2 years ago
Posts: 682
Topic starter  

Global with sharing class MyRemoter { public String accountName { get; set; } public static Account account { get; set; } public AccountRemoter(} {} @RemoteAction global static Account getAccount (String acccuntName) { account = [SELECT Id, Name, NumberOfEmployees FROM Account WHERE Name = :accountName]; return account; } } Consider the Apex class above that defines a RemoteAction used on a Visualforce search page .

Which code snippet will assert that the remote action returned the correct Account?

  • A . MyRemoter remote = new MyRemoter(); Account a = remote.getAccount ({'TestAccount'); System.assertEquals, ‘TestAcccunt', a.Name -;
  • B . Account a = MyRemoter.getAccount ('TestAccount'):
    System.assertEquals{ ‘TestAccount', a.Name };
  • C . MyRemoter remote = new MyRemoter('TestAccount'};
    Account a = remote.getAccount {);System.assertEquals(, ‘'TestAccount', a.Name -;
  • D . Account a = controller.getAccount('TestAccount’);
    System.assertEquals(, ‘TestAccount', a.Name } ;

Show Answer Hide Answer

Suggested Answer: B

   
Quote

Latest Salesforce PDII Dumps Valid Version

Latest And Valid Q&A | Instant Download | Once Fail, Full Refund
Share: