• Anshul Kumar 26
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies
Hello, I'm implementing a robust class that implements the interface SandboxPostCopy. In there I have several private methods that are then individualy tested from the test class.
Now I have the need of creating another private method that should receive as a parameter the SandboxContext instance that the runApexClass receives, but I'm not able to create a test method for that particular private method as I'm not able to create an instance of SandboxContext that I need to send as a parameter.
I can see in different post how to instantiate my implementation of the SandboxPostCopy and send parameters that then are translated to the SandboxContext, but this will excecute all of the more than 20 private methods that I have. I don't want that, I need to unit test the private method that I have created.
Any idea on how this can be implemented? 
Thanks in advance.