@NoArgsConstructor
public Test() {
}
@RequiredArgsConstructor
private final TestService testService;
private NormalService normalService;
public Test(TestService testService) {
this.testService = testService;
}
@AllArgsConstructor
private final TestService testService;
private NormalService normalService;
public Test(TestService testService, NormalService normalService) {
this.testService = testService;
this.normalService = normalService;
}