목적
Service layer
Service layer
Service layer
public class ExampleServiceTest {
@MockBean
private NestedService nestedService;
@Autowired
private ExampleService exampleService;
@Test
void test() {
given(nestedService.doSomething()).willReturn("hello test");
}
}Service layer
Service layer
Service layer
Mock
Assertion
private
private
마무리