0% found this document useful (0 votes)
51 views

Advanced Testing & Debugging: Getting The Most From The Developer Console

This document discusses advanced testing and debugging techniques in Salesforce. It covers why writing tests is important to protect against bugs from other developers and future changes. It also provides an overview of how to write and run tests using the Developer Console or Setup interface. The document demonstrates debugging with the Log Inspector and checkpoints to inspect variable values and memory at specific points in code execution.

Uploaded by

satkabeer654
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
51 views

Advanced Testing & Debugging: Getting The Most From The Developer Console

This document discusses advanced testing and debugging techniques in Salesforce. It covers why writing tests is important to protect against bugs from other developers and future changes. It also provides an overview of how to write and run tests using the Developer Console or Setup interface. The document demonstrates debugging with the Log Inspector and checkpoints to inspect variable values and memory at specific points in code execution.

Uploaded by

satkabeer654
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 23

Advanced Testing & Debugging

Getting the Most from the Developer Console


Josh Kaplan, Salesforce.com, Sr. Product Manager @Josh SFDC Tony Tonev, Salesforce.com, Software Engineer

Safe harbor
Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services. The risks and uncertainties referred to above include but are not limited to risks associated with developing and delivering new functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of intellectual property and other litigation, risks associated with possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-Q for the most recent fiscal quarter ended July 31, 2012. This documents and others containing important disclosures are available on the SEC Filings section of the Investor Information section of our Web site. Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forwardlooking statements.

Join the conversation: #forcewebinar

Speakers
Josh Kaplan
Sr. Product Manager, @JoshSFDC

Tony Tonev
Software Engineer

Join the conversation: #forcewebinar

Follow Developer Force for the latest news


@forcedotcom / #forcewebinar Developer Force Force.com Community +Developer Force Force.com Community Developer Force Developer Force group
Join the conversation: #forcewebinar

Have questions?
We have an expert support team at the ready to answer your questions during the webinar. Ask your questions via the GoToWebinar Questions Pane. The speaker(s) will choose top questions to answer live at the end of the webinar. Please post your questions as we go along! Only post your question once; well get to it as we go down the list.

Join the conversation: #forcewebinar

Agenda
Testing Apex
Why test? When test? How test?

Code Coverage Advanced Debugging


Log Inspector Checkpoints
Set checkpoints View memory contents Inject logic
Join the conversation: #forcewebinar

Assumptions
This webinar assumes the following: You know
what Apex code is how to launch the Developer Console

You have
used the Developer Console before done debugging before

But dont worry, you can catch up via these resources:


http://wiki.developerforce.com/page/Webinar:_Intro_to_Apex_Code_(2012-July)

Join the conversation: #forcewebinar

Why test?

Join the conversation: #forcewebinar

Testing Protects You From Others

Join the conversation: #forcewebinar

Testing Protects You From Us

Join the conversation: #forcewebinar

When should I test?


Write tests throughout development
Before development After development In their own @isTest classes

You should test frequently!


During development Before deployment During deployment During release preview window
Join the conversation: #forcewebinar

How can I run tests on my code?


Salesforce provides several avenues for test execution
Developer Console Setup User Interface Automatically during deployment Through the Tooling API *COMING SOON!*

Join the conversation: #forcewebinar

Developer Console

Join the conversation: #forcewebinar

Testing in Setup User Interface

Join the conversation: #forcewebinar

Asynchronous Test Execution


Salesforce runs your tests in the background so they can be processed as resources allow.
Asyncronous testing runs tests in no particular order It allows you to see status of tests as they complete The process is integrated into developer console

Join the conversation: #forcewebinar

Code Coverage
We store the results of your testing to calculate code coverage, and show you these stored results in the developer console.
Aggregate coverage for each class and trigger Coverage by each test method on each class and trigger CAUTION! These results are stale as soon as you change the test or the class

Join the conversation: #forcewebinar

Lets See The Demo Already!

Join the conversation: #forcewebinar

Use Case: UberJet

Join the conversation: #forcewebinar

Debugging Code

Join the conversation: #forcewebinar

Debugging with the Log Inspector


Execution Log
The entire transaction, line by line and more

Source / Variables
Current code location and variable values

Stack
How you got where you are How long each step took

Execution Overview
Limits Performance per action, per method

Join the conversation: #forcewebinar

When the log is not enoughcheckpoints!


A checkpoint is like a breakpoint, but cloud-approved
Heap
Provide a view into the memory at the checkpoint

SOQL query
Run a SOQL query at the checkpoint

Apex Code
Inject a miniature apex snippet at the checkpoint

Join the conversation: #forcewebinar

Recap
Testing Is Important, Testing Is Easy
Test always Use the Developer Console to see results and code coverage statistics

Debugging Is Hard, Debugging Can Be Easier


The Log Inspector provides many views into the haystack Use Checkpoints to see the state of the world at a critical point

Join the conversation: #forcewebinar

Resources
Developer Console topic page: http://wiki.developerforce.com/page/Developer_Console Next Steps
Write More Tests! Use Developer Console To Run Your Tests Use Developer Console To Debug Your Code\

Join the conversation: #forcewebinar

You might also like