I have a method that creates an object, which the constructor of that object then calls several static/final methods. Mockito cannot mock a constructor, and it can also not mock static/final methods, so what am I supposed to do?
--Edit--
Apparently people think my question is unclear: I have a method. It calls a constructor. Constructor is not mockable. How do I test this method?
The reason why I mentioned static/final methods is because I decided I may as well test the constructor as well and mock the methods within that constructor. However, it is full of static/final methods which makes this impossible.