We utilize the Springboot java framework and we have unit testing. We use Mockito and Unirest, however unit tests are called when someone builds - so we could end up calling auth0 100’s of times per day.
So we are trying to mock it.
To really check auth0 requests we need to call them…but we don’t want to each time.
I realize this is very open questions, but I wondered what support auth0 for unit testing? What is the best way of doing this? Is there a testing endpoint or is the best way to have this test as a manual run only?