function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
RoyalRoyal 

how to cover catch block code in Test class ?

Sonam_SFDCSonam_SFDC
Try to create an exception(DML or Query or the applicable in your code) such that you can catch and use system.assert(true) in the catch block to ensure the exception is raised and caught.

One example is - when you try to enter a record with a required field : 
In the test class, when you create a record, deliberately miss the required field such that an DML except is raised with error : required value missing 

You can then catch and do the system.assert to prove that exception is raised and caught.
OnpursuitOnpursuit
Also remember, that if the invalid record is executing other classes. Like two trigger fires when record is updated then the other classes need to be modified too. All classes need to catch this exception.