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
Rahul Sangwan7341Rahul Sangwan7341 

Getting error in Test Class for more than 200 cases. Assert Failed: Expected 402, Actual 602 ( Test automation logic)

Facing error in Test automation logic.
Below is my helper codde.
public class MaintenanceRequestHelper {
    private static List<Case> closedCases = new List<Case>();
    private static List<Case> newlyCreatedCases ;
    private static List<Work_Part__c> allWorkParts = new List<Work_Part__c>();
    
    
    
    public static void updateAfterUpdateActivity(List<Case> newCases, Map<Id, Case> oldCases){
        for(Case singleCase : newCases){
            if(singleCase.status == 'Closed' && oldCases.get(singleCase.ID).status != singleCase.status){
                if(singleCase.Type == 'Repair' || singleCase.Type == 'Routine Maintenance'){
                    closedCases.add(singleCase);
                }
            }
        }
        createFollowUpMaintenanceRequest();
    }
    
    private static void createFollowUpMaintenanceRequest(){
        Set<ID> caseIds = new Set<ID>();
        for(Case singleCase : closedCases){
            caseIds.add(singleCase.Id);
        }
        Integer shortestMaintCycle;
        
        Map<Id, List<Work_Part__c>> maintWorkPartMap = createMaintWorkPartMap(caseIds);
        
        newlyCreatedCases = new List<Case>();
        for(Case singleCase : closedCases){
            List<Work_Part__c> workParts = maintWorkPartMap.get(singleCase.Id);
            if(workParts != null){
                shortestMaintCycle = Integer.valueOf(findShortestMaintCycle(workParts));    
            }else{
                shortestMaintCycle = Integer.valueOf(0.0);
            }
            
            
            Case newCase = new Case();
            newCase.Type = 'Routine Maintenance';
            newCase.Status = 'New';
            newCase.Vehicle__c = singleCase.Vehicle__c;
            newCase.Product__c = singleCase.Product__c;
            newCase.Subject =  String.isBlank(singleCase.Subject) ?'Routine maintenance request':singleCase.Subject;
            newCase.Date_Reported__c = Date.today();
            newCase.Date_Due__c = Date.today().addDays(Integer.valueOf(shortestMaintCycle));
            newCase.Old_Case__c = singleCase.Id;
            newCase.AccountId = singleCase.AccountId;
            newCase.Origin = singleCase.Origin;
            newCase.Equipment__c = singleCase.Equipment__c;
            if(newCase.Id == null)
            newlyCreatedCases.add(newCase);
        }
        
        if(newlyCreatedCases.size() > 0){
            system.debug('newlyCreatedCases::::'+newlyCreatedCases);
            insert newlyCreatedCases;
            updateRelatedWorkOrders(newlyCreatedCases);
        }
    }
    
    private static void updateRelatedWorkOrders(List<Case> cases){
        Map<Id, Id> oldToNewCaseMap = new Map<Id, Id>();
        for(Case singleCase : cases){
            oldToNewCaseMap.put(Id.valueOf(singleCase.Old_Case__c),singleCase.Id);
        }
        
        if(allWorkParts != null){
            for(Work_Part__c singleWorkPart : allWorkParts){
                Id newCaseId = oldToNewCaseMap.get(singleWorkPart.Maintenance_Request__c);
                singleWorkPart.Maintenance_Request__c = newCaseId;
            }
        }
        
        if(allWorkParts != null && allWorkParts.size() > 0){
            update allWorkParts;
        }        
    }
    
    private static Decimal findShortestMaintCycle(List<Work_Part__c> workParts){
        Decimal shortestValue;
        if(workParts.size()>0){
            shortestValue = workParts.get(0).Equipment__r.Maintenance_Cycle__c;
        }
        for(Work_Part__c singleWorkPart : workParts){
            if(singleWorkPart.Equipment__r.Maintenance_Cycle__c < shortestValue){
                shortestValue = singleWorkPart.Equipment__r.Maintenance_Cycle__c;
            }
        }
        return shortestValue;
    }
    
    private static Map<Id, List<Work_Part__c>> createMaintWorkPartMap(Set<ID> caseIds){
        //Fetch all WorkPart details
        allWorkParts = [SELECT ID, Equipment__c, Maintenance_Request__c, 
                        Quantity__c, Equipment__r.Maintenance_Cycle__c FROM Work_Part__c 
                        WHERE Maintenance_Request__c in: caseIds];
        Map<Id, List<Work_Part__c>> maintWorkPartMap = new Map<Id, List<Work_Part__c>>();
        for(Work_Part__c singleWorkPart : allWorkParts){
            List<Work_Part__c> tempList;
            if(maintWorkPartMap.get(singleWorkPart.Maintenance_Request__c) == null){
                tempList = new List<Work_Part__c>();
            }else{
                tempList = maintWorkPartMap.get(singleWorkPart.Maintenance_Request__c);
            }
            tempList.add(singleWorkPart);
            maintWorkPartMap.put(singleWorkPart.Maintenance_Request__c, tempList);
        }
        
        return maintWorkPartMap;
    }
    
}

 
Rahul Sangwan7341Rahul Sangwan7341
system.assert is : 01:18:23:845 SOQL_EXECUTE_BEGIN [35]|Aggregations:0|SELECT COUNT() FROM Case WHERE subject LIKE '%AMC Spirit%'.
The issue is most probably with newlyCreatedCases