Understanding Testing in Apex
Testing is the key to successful long term development and is a critical component of the development process. And testing is key to the success of application particularly if application to be deployed to customers. If we validate that application works as expected, that there are no unexpected behaviors, then application will run for longtime. There are two ways of testing an application. One is through the salesforce user interfaces (testing with a single record) The other way is to test for build functionality i.e testing with bulk records by using apex data loader up to 200 records can be passed through code. Before we can deploy code or package into production, the following must be true. Check out the top Salesforce Interview Questions now! → 75 % of apex code must be covered by unit tests. All of those tests must complete successfully. → When deploying to a production organization we need to have 75% of apex code cove...
Comments
Post a Comment