Fairly new to the concept of unit testing here. I'm using Java (JUnit) but this is really a question that applies to any type of unit testing.
Say I have number of objects:
WidgetFooFizzBuzz
And they are all in the same package. Let's just say that Widget has a run() method that looks like this:
public void run() {
Foo foo = new Foo(true, 1);
Fizz fizz = FizzFactory.getInstance(Widget.class);
Buzz buzz = getBuzz();
int someData = fizz.process(buzz);
foo.execute(someData);
}
So here we have several objects (and their methods) being called inside of run(). How does one actually go about unit testing ("mocking" or "stubbing" out Foo, Fizz and Buzz) this method without crossing the grey line into integration testing?