anusha(salesforce developer)

Sunday 28 August 2016

Best Practices while writing Test Classes ?

Best Practices while writing Test Classes ?
  1. Test Coverage Target Should not be limited to 75%”. It is not about coverage, It is about testing complete functionality
  2. If possible Don’t use seeAllData=true, Create your Own Test Data.
  3. Always use @testSetup method dedicated to create test records for that class. This is newly added annotation and very powerful. Any record created in this method will be available to all test methods of that class. Using @testSetup method will improve test execution performance by creating test records only once for that class. If you are not using this, means test record is created in each TestMethod which will be very slow.
  4. Create Different Class which will create Dummy Data for testing, and use it everywhere 
  5. Use Test.startTest() to reset Governor limits in Test methods
  6. Use As much as Assertions like System.AssertEquals or System.AssertNotEquals
  7. If you are doing any Asynchronous operation in code, then don’t forget to call Test.stopTest() to make sure that operation is completed.
  8. Use System.runAs() method to enforce OWD and Profile related testings. This is very important from Security point of View.
  9. Always test Batch Capabilities of your code by passing 20 to 100 records.
  10. Use Test.isRunningTest() in your code to identify that context of class is Test or not. You can use this condition with OR (||) to allow test classes to enter inside code bock. It is very handy while testing for webservices, we can generate fake response easily.
  11. @TestVisible annotation can be used to access private members and methods inside Test Class. Now we don’t need to compromise with access specifiers for sake of code coverage.
  12. End your test class with “_Test”. So that in Apex Class list view, Main class and Test class will come together, resulting easy navigation and time saver.
  13. Always try to pass null values in every methods. This is the area where most of program fails, unknowingly.

No comments:

Post a Comment