For example:
@RunWith(MockitoJUnitRunner.class)
public class ClientFormServiceTest {
@Mock
ClientFormService clientFormService;
public class GetNewClientFormTest {
@Mock
protected ClientForm result;
@Before
public void given() {
result = clientFormService.getNewForm();
}
@Test
public void should_do_something() {
}
}
public class CreateClientFormTest {
@Mock
protected ClientForm clientForm;
@Before
public void given() {
clientFormService.createForm(clientForm);
}
@Test
public void should_do_something() {
}
}
}
This is what I want to do but I can't run the unit tests if are nested to a class.
public classresides within its own *.java file of the same name. Therefore, your code example is asking for the test classCreateClientFormTestto run with Mockito when there is no@RunWith(MockitoJUnitRunner.class)defined in that source file. – Brad Jul 4 '12 at 13:51