Hi,
The best practice says that you should do first the unit tests and than the integration tests
So in your case first test the logic in the class without calling the class dependencies. This will probably the place where you'll need the Isolator :)
Than do the integration tests where you actually call the dependencies and test that they work together.
Hope I understood the question, please let me know if it helps.