How to cover Inner class in Test class for code coverage in Salesforce?
Sample Code: Apex Class: public class EmployeeController { public static void assignSequence(List<Employee__c> listEmployee, Decimal startNum) { Decimal initial = startNum; List<EmployeeWrapper> listEmployeeWrapper = new List<EmployeeWrapper>(); for(Employee__c emp : listEmployee) { ....