Thursday, April 22, 2021

Hello World

Start with Hello World as a tradition.

Try to enter code block to blogger using Hilite.me !

Test code sample in salesforce Apex format.

@isTest
private class HelloWorld_Test{
  static testMethod void createHelloWorld() {
        Account a = new Account(name='Hello World');
        insert a;
        System.debug(LoggingLevel.INFO, 'Hello World account ID :' + a.Id);
  }
}

End of code block Test.

No comments:

Post a Comment

Next year SF migration plan : moving out customer account to AWS , and call SF data with service account

 πŸ‘€ The most challenging part is about those function with user verification. My service cloud with MIAW chat , nearly redo due to the user ...