I am building an application using YouTube's API. This is my first time using a proper API, so I don't fully understand how it works (hence I am here).
Every time I come to code for the application, I am finding that my unit tests run into the limit pretty quickly. How do people normally handle situations like this? Is it a case of not unit testing? Or there something I can do instead to prevent this issue?
For anyone familiar with YouTube's API, based on this, I am only making requests to retrieve 1-2 videos per test, and I currently have around 10 tests. If I am correct, assuming that I am requesting 2 videos per call, I should be able to run the tests 10,000/20 = 500 times, no?