本文整理了Java中com.github.robozonky.common.remote.Zonky.invest()
方法的一些代码示例,展示了Zonky.invest()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Zonky.invest()
方法的具体详情如下:
包路径:com.github.robozonky.common.remote.Zonky
类名称:Zonky
方法名:invest
暂无
代码示例来源:origin: com.github.robozonky/robozonky-app
private static Either<InvestmentFailure, BigDecimal> invest(final Tenant auth,
final RecommendedLoan recommendedLoan) {
LOGGER.debug("Executing investment: {}.", recommendedLoan);
final Investment i = convertToInvestment(recommendedLoan);
try {
auth.run(zonky -> zonky.invest(i));
LOGGER.debug("Investment succeeded.");
return Either.right(recommendedLoan.amount());
} catch (final Exception ex) {
LOGGER.debug("Failed investing {} CZK into loan #{}. Likely already full in the meantime.",
recommendedLoan.amount(), i.getLoanId(), ex);
return Either.left(InvestmentFailure.FAILED);
}
}
代码示例来源:origin: RoboZonky/robozonky
private static Either<InvestmentFailure, BigDecimal> invest(final Tenant auth,
final RecommendedLoan recommendedLoan) {
LOGGER.debug("Executing investment: {}.", recommendedLoan);
final Investment i = convertToInvestment(recommendedLoan);
try {
auth.run(zonky -> zonky.invest(i));
LOGGER.info("Invested {} CZK into loan #{}.", recommendedLoan.amount(), i.getLoanId());
return Either.right(recommendedLoan.amount());
} catch (final Exception ex) {
LOGGER.debug("Failed investing {} CZK into loan #{}. Likely already full in the meantime.",
recommendedLoan.amount(), i.getLoanId(), ex);
return Either.left(InvestmentFailure.FAILED);
}
}
代码示例来源:origin: RoboZonky/robozonky
@Test
void investAndlogout() {
final ControlApi control = mock(ControlApi.class);
final Api<ControlApi> ca = mockApi(control);
final PaginatedApi<RawLoan, LoanApi> la = mockApi();
final int loanId = 1;
final RawLoan loan = mock(RawLoan.class);
when(loan.getId()).thenReturn(loanId);
when(loan.getAmount()).thenReturn(200.0);
when(loan.getRemainingInvestment()).thenReturn(200.0);
when(la.execute(any())).thenReturn(loan);
final Zonky z = mockZonky(ca, la);
final Loan l = z.getLoan(loanId);
final Investment i = Investment.fresh(l, 200);
z.invest(i);
z.logout();
verify(control, times(1)).invest(any());
verify(control, times(1)).logout();
}
内容来源于网络,如有侵权,请联系作者删除!