Using Mockito, how can I mock static methods alongside regular Mockito mocks?
Writing unit tests for a Java class, I came across a method where there are external classes that I need to mock, as well as a static method inside the tested class that also needs to be mocked.