In order to stub methods when using JUnit and Mockito, it's possible to use two ways:
when(foo.doSomething()).thenReturn(somethingElse);
and
given(foo.doSomething()).willReturn(somethingElse);
Are there any differences between these two stubs?