This is an automated email from the ASF dual-hosted git repository.
adamsaghy pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git
from f2b2981f3a Merge pull request #6395
add b882a22809 FINERACT-2793: add user creation to the feign user helper
add af7a1bbbb3 FINERACT-2793: migrate the charge-off, overpaid and
auditing loan tests to feign
add b77b3a51f9 FINERACT-2793: migrate the down-payment schedule and
backdated disbursement tests to feign
add 5688058983 FINERACT-2793: migrate the loan charge refund test to feign
add 04823533a1 FINERACT-2793: model the post dated checks a disbursement
carries
add f4ebdf89a7 FINERACT-2793: migrate the charge-off accounting and
transaction summary tests to feign
add 50d54496f9 FINERACT-2793: migrate the disbursement and amortization
loan tests to feign
add 7d5c48722b FINERACT-2793: migrate the group meeting driven loan
schedule tests to feign
add 9f6e3c8229 FINERACT-2793: add a feign helper for loan guarantors
add 6af2cec7d9 FINERACT-2793: migrate the loan guarantor tests to feign
add 172afd7c41 FINERACT-2793: complete the loan request models the tests
drive
add 7a5bec0aff FINERACT-2793: add a feign helper for variable installment
loans
add 5b55bf9fbc FINERACT-2793: migrate the tranche and variable installment
tests to feign
add e93393c5bc FINERACT-2793: migrate the group summary report test to
feign
add 1ceb096f39 FINERACT-2793: retire the RestAssured loan test base class
new 8d7260ba01 Merge pull request #6355
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../fineract/test/stepdef/loan/LoanStepDef.java | 4 +-
.../api/LoanScheduleApiResourceSwagger.java | 82 +
.../api/LoanTransactionsApiResourceSwagger.java | 18 +
.../api/LoanProductsApiResourceSwagger.java | 12 +
.../api/LoanDisbursementDetailApiResource.java | 3 +-
.../LoanDisbursementDetailApiResourceSwagger.java | 19 +
.../loanaccount/api/LoansApiResourceSwagger.java | 25 +-
.../RepaymentWithPostDatedChecksApiResource.java | 2 +-
.../api/SavingsAccountsApiResourceSwagger.java | 2 +
.../integrationtests/BaseLoanIntegrationTest.java | 1944 --------------------
...BlockTransactionsOnClosedOverpaidLoansTest.java | 188 +-
.../ClientLoanChargeRefundIntegrationTest.java | 550 +++---
.../DisbursalAndRepaymentScheduleTest.java | 422 ++---
.../GroupSummaryReportsIntegrationTest.java | 44 +-
.../LoanAccountBackdatedDisbursementTest.java | 206 +--
.../LoanAccountOverpaidDateStatusTest.java | 149 +-
.../LoanAccountRepaymentCalculationTest.java | 119 +-
.../LoanApplicationUndoLastTrancheTest.java | 387 ++--
.../LoanChargeOffAccountingTest.java | 714 ++++---
.../LoanDisbursalDateValidationTest.java | 144 +-
.../LoanDisbursementDetailsIntegrationTest.java | 1370 +++++---------
...anFixedPrincipalPercentageAmortizationTest.java | 364 +---
.../LoanLastRepaymentDetailsTest.java | 188 +-
.../LoanPayOffAddChargeWithRefundTest.java | 145 +-
.../LoanReschedulingWithinCenterTest.java | 5 +-
.../LoanTransactionAuditingIntegrationTest.java | 120 +-
.../LoanTransactionSummaryTest.java | 247 +--
.../LoanUndoChargeOffReverseExternalIdTest.java | 142 +-
...ithWaiveInterestAndWriteOffIntegrationTest.java | 325 ++--
...mDaysBetweenDisbursalAndFirstRepaymentTest.java | 287 +--
.../RepaymentWithPostDatedChecksTest.java | 241 +--
.../SkipRepaymentOnMonthFirstTest.java | 185 +-
.../client/feign/FeignLoanTestBase.java | 2 +-
.../client/feign/helpers/FeignGuarantorHelper.java | 61 +
.../client/feign/helpers/FeignLoanHelper.java | 33 +-
.../client/feign/helpers/FeignReportHelper.java | 16 +
.../client/feign/helpers/FeignUserHelper.java | 13 +
.../helpers/FeignVariableInstallmentsHelper.java | 62 +
.../VariableInstallmentsRequestBuilders.java | 82 +
.../common/externalevents/ExternalEventHelper.java | 118 --
.../common/loans/LoanProductTestBuilder.java | 22 +-
.../integrationtests/guarantor/GuarantorTest.java | 1359 ++++++--------
.../inlinecob/InlineLoanCOBHelper.java | 86 -
.../VariableInstallmentsIntegrationTest.java | 813 +++-----
44 files changed, 3602 insertions(+), 7718 deletions(-)
delete mode 100644
integration-tests/src/test/java/org/apache/fineract/integrationtests/BaseLoanIntegrationTest.java
create mode 100644
integration-tests/src/test/java/org/apache/fineract/integrationtests/client/feign/helpers/FeignGuarantorHelper.java
create mode 100644
integration-tests/src/test/java/org/apache/fineract/integrationtests/client/feign/helpers/FeignVariableInstallmentsHelper.java
create mode 100644
integration-tests/src/test/java/org/apache/fineract/integrationtests/client/feign/modules/VariableInstallmentsRequestBuilders.java
delete mode 100644
integration-tests/src/test/java/org/apache/fineract/integrationtests/common/externalevents/ExternalEventHelper.java
delete mode 100644
integration-tests/src/test/java/org/apache/fineract/integrationtests/inlinecob/InlineLoanCOBHelper.java