gpt4 book ai didi

com.github.robozonky.common.remote.Zonky.invest()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-14 00:37:31 35 4
gpt4 key购买 nike

本文整理了Java中com.github.robozonky.common.remote.Zonky.invest()方法的一些代码示例,展示了Zonky.invest()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Zonky.invest()方法的具体详情如下:
包路径:com.github.robozonky.common.remote.Zonky
类名称:Zonky
方法名:invest

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();
}

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com