• Justin Murty
  • NEWBIE
  • 0 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 3
    Replies
On the App Launcher tab of my developer org, it's not showing the Dreamhouse App I installed even though I followed all the instructions in the Trailhead instructions in the Getting Started with SalesForce Platform module. I have since seen that there are two possible versions of DreamHouse to launch but I'm not sure how to proceed since the Trailhead instructions has lead to installing a version of of Dreamhouse I'm not seeing on my org. Does anyone know how to proceed so I can complete this Trailhead session?
On the App Launcher tab of my developer org, it's not showing the Dreamhouse App I installed even though I followed all the instructions in the Trailhead instructions in the Getting Started with SalesForce Platform module. I have since seen that there are two possible versions of DreamHouse to launch but I'm not sure how to proceed since the Trailhead instructions has lead to installing a version of of Dreamhouse I'm not seeing on my org. Does anyone know how to proceed so I can complete this Trailhead session?
Hello,

Have a problem regarding unit tests challenge in apex.Below is my code

@isTest
private class TestVerifyDate{
    @isTest
    static  void TestVerifyDate1() {
        //check for date2 being in the past
        Date day1 = Date.newInstance(2015, 1, 11);
        Date day2 = Date.newInstance(2015, 1, 10);
       
        Date date_res1 = VerifyDate.CheckDates(day1,day2);
        system.debug(date_res1+' Run1: Date1: ' + day1+ 'Date2: ' + day2);
    }  
}

The above code shows an error saying "Method does not exist or incorrect signature: VerifyDate.CheckDates(Date, Date)" . What is the right code please help.


Thanks,
Regards
Deeksha