21 How to Implement & Run Apex Test Class for Apex Code Coverage | Salesforce Training Video Series

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ต.ค. 2024
  • studysalesforce... [Find all Salesforce Video links]
    Udemy : Enroll Salesforce Admin Certification Masterclass : kadge.io/admin201
    Udemy : Enroll Salesforce PD1 Certification Masterclass : kadge.io/pd1
    Udemy : Enroll Salesforce Flow Builder Masterclass: kadge.io/flowb...
    For Online Individual or Group Training Please Email or Visit below Website.
    Email: sanjaygupta.techschool@gmail.com or
    Visit: studysalesforce...
    Connect with Sanjay Gupta:
    Linkedin: / sanjay-gupta-bb2a79bb
    Find Below: TH-cam Playlist Links for Salesforce Videos
    Salesforce Administrator (Lightning Experience) Video Series
    • 01 How to create Devel...
    LWC | Lightning Web Component
    • 01 LWC | Introduction ...
    Salesforce Flow Scenarios
    • 01 Screen Flow Scenari...
    Aura Component Development
    • 01 Introduction to Lig...
    Apex Programming | Apex Test | Async Apex in Salesforce
    • 01 Introduction to Ape...
    Salesforce Interview Preparation Videos
    • What is workflow rule ...
    Flow Builder in Salesforce Lightning Video Series
    • What is Flow Builder i...
    Apex Triggers in Salesforce
    • 01 Introduction to Ape...
    Asynchronous Apex in Salesforce
    • 01 Introduction to Asy...
    Process Builder in Salesforce Lightning Video Series
    • What is process builde...
    Workflow Rule in Salesforce Video Series
    • What is workflow rule ...
    Report & Dashboard in Salesforce Video Series
    • Introduction to Report...
    Data Security in Salesforce Video Series
    • Introduction to Data S...
    Please like and subscribe to support the efforts.
    #Salesforce #lightning #development #flow #admin #salesforceadmin #salesforcetraining #learnsalesforce #interview #salesforcedeveloper #developer #sanjaygupta #sanjayguptatechschool #studysalesforce #apex #trigger #integration #lwc #aura #lightningwebcomponent

ความคิดเห็น • 11

  • @SanjayGuptaTechSchool
    @SanjayGuptaTechSchool  2 ปีที่แล้ว

    For Online Individual or Group Training Please Email or Visit below Website.
    Email: sanjaygupta.techschool@gmail.com or Visit: studysalesforce.com/
    Connect with Sanjay Gupta on Linkedin: www.linkedin.com/in/sanjay-gupta-bb2a79bb/
    Udemy : Enroll Salesforce Flow Builder Masterclass: kadge.io/flowbuilder
    Udemy : Enroll Salesforce Admin Certification Masterclass : kadge.io/admin201
    Udemy : Enroll Salesforce PD1 Certification Masterclass : kadge.io/pd1
    Please like and subscribe to support the efforts.

  • @amanbhatia2344
    @amanbhatia2344 3 ปีที่แล้ว +2

    Sanjay sir please make some videos on VF PGAES

  • @mohdafaque456
    @mohdafaque456 2 ปีที่แล้ว +2

    Best Salesforce TH-cam channel

  • @Eliezeraugust0
    @Eliezeraugust0 11 หลายเดือนก่อน

    I'm trying to push an update from sandbox to production, and I'm getting an error that my code coverage is 38%. And I dont know how to corrected, I wasnt the creator of the clases.

  • @noorbanoansari4652
    @noorbanoansari4652 3 ปีที่แล้ว +2

    Thank you for great videos sir

  • @Cyrus_Michael
    @Cyrus_Michael 2 ปีที่แล้ว +1

    Thanks a lot for the video

  • @rahamathshaik4782
    @rahamathshaik4782 ปีที่แล้ว

    sir how a particular test class will identify its apex class..because we did not mention any apex class name ..that it need to hit the particular class only

  • @shubhampatidar1814
    @shubhampatidar1814 ปีที่แล้ว +1

    Thank you

  • @VrushabhChougale
    @VrushabhChougale 2 ปีที่แล้ว +1

    Thanks

  • @dheerajkumar-yj6xh
    @dheerajkumar-yj6xh 2 ปีที่แล้ว

    how to write test coverage code
    public class Project_Mentor {
    Public static void mentorsStatusAvailable(listprojmentlist)
    {
    SetUniqueid =new Set();
    for(Project_Mentor__c Pm:projmentlist)
    {
    Uniqueid.add(Pm.Mentor__c );
    }

    list mntlist = [SELECT id,Name From Mentor__c WHERE id IN: Uniqueid];
    //Listpmlist=[SELECT id,Name FROM Project_mentor_c WHERE id iN : Uniqueid];
    for(Mentor__c ment: mntlist)
    {
    for(Project_Mentor__c Pm:projmentlist)
    {
    if((Pm.Status__c=='Completed') && (Pm.Mentor__c==ment.id))

    {
    Ment.Status__c ='Available';
    }
    }
    }
    if(projmentlist.size() > 0)
    {
    try{
    Update mntlist;
    }
    Catch(Exception EX){
    System.debug(EX);
    }
    }
    }
    }