Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Get Started with Apex Unit Tests from (module - Apex Testing)
- -------------------------------------------------
- Name: TestVerifyDate
- @isTest
- public class TestVerifyDate
- {
- static testMethod void testMethod1()
- {
- Date d = VerifyDate.CheckDates(System.today(),System.today()+1);
- Date d1 = VerifyDate.CheckDates(System.today(),System.today()+60);
- } }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement