This repository is part of the Developer Kickstart module 3 curriculum at Cloud Code Academy. It's designed to help beginner Salesforce developers learn and practice the principles of Object-Oriented Programming in the Apex language, specifically focusing on classes, methods, and objects.
Through this practice repository, you'll gain foundational knowledge about:
- Understanding the role and structure of classes in Apex, including properties and methods.
- How to create and use objects in Apex.
- The principles of encapsulation and the importance of getter and setter methods.
- The interaction between objects, specifically object references and passing objects to methods.
This foundational knowledge will prepare you for more advanced topics in Salesforce development, such as inheritance, interfaces, and polymorphism. The curriculum includes practical examples with classes such as Person and Book to solidify these concepts.
Certain test methods related to the Book and Person classes are currently commented out and will need to be uncommented and deployed once the relevant classes are set up.
- Create/Configure a trailhead playground or developer org to do your work throughout this program.
- Install Visual Studio Code from here.
- Install Salesforce Extension Pack in Visual Studio Code. This can be done by searching 'Salesforce Extension Pack' in the Extensions view in VS Code and clicking Install.
- Authorize your org in Visual Studio Code. Press
Ctrl/Cmd + Shift + P
to open the command palette and type 'SFDX: Authorize an Org', then press Enter. Follow the steps in the browser to log in to your org, then return to VS Code. - Save and deploy your changes into Salesforce from your local machine. This can be done through the command pallet or right-clicking the file you want to deploy and using the option
SFDX: Deploy this source to org
- Navigate to the folder force-app/main/default/ and deploy the metadata to your Salesforce org. Right-click on the folder and select
SFDX: Deploy Source to Org
. - Review the files provided including the test class to understand the challenges.
- Update the code and deploy it to your Salesforce org.
- Run the test class to validate your code. Use
Ctrl/Cmd + Shift + P
to open the command palette and type 'SFDX: Run Apex Tests', then press Enter. You can also useRun All Test
orRun Test
on the test class. - Push your changes to your GitHub repository and submit the link to the assignment in the submission form in Slack.
If you get stuck at any point, here are some resources that might help:
- Apex Developer Guide
- Salesforce Stack Exchange
- Visual Studio Code Documentation
- Salesforce Extensions for Visual Studio Code
And remember, programming is often about solving problems, so don't be afraid to use search engines to find answers to your questions.
Good luck with your learning journey in Salesforce development!