Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
You should clarify what you mean by "nested". Valid Java requires that each public class resides within its own *.java file of the same name. Therefore, your code example is asking for the test class CreateClientFormTest to run with Mockito when there is no @RunWith(MockitoJUnitRunner.class) defined in that source file. – Brad Jul 4 '12 at 13:51

1 Answer

Why would you like to do that? If you mean to benefit from code reuse among many similar tests, you could come up with a base test class with common code and make test classes extend it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.