If you just simply want to provide a different bean in your tests, i think you don’t need to use spring profiles or mockito.
Just do the following:
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = { TestConfig.class })
public class MyTest
{
@Configuration
@Import(Application.class) // the actual configuration
public static class TestConfig
{
@Bean
public IMyService myService()
{
return new MockedMyService();
}
}
@Test
public void test()
{
....
}
}
NOTE: tested with spring boot 1.3.2 / spring 4.2.4