Skip to content

Commit

Permalink
Fixed Checkstyle issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sathishkannan-hmcts committed Sep 5, 2024
1 parent e4c8693 commit 42c47e0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,8 @@ void when_caseData_then_return_expected_dueDateFields() {
"updateHearingActualsC100","updateHearingActualsFL401","requestSolicitorOrderC100",
"requestSolicitorOrderFL401","confidentialCheckSOA","recreateApplicationPack",
"replyToMessageForCourtAdminFL401","replyToMessageForCourtAdminC100","replyToMessageForLA",
"completefl416AndServe","listWithoutNoticeHearingC100","listOnNoticeHearingFL401","reviewLangAndSmReq","listWithoutNoticeHearingFL401"
"completefl416AndServe","listWithoutNoticeHearingC100","listOnNoticeHearingFL401",
"reviewLangAndSmReq", "listWithoutNoticeHearingFL401"
})
void when_given_task_type_then_return_dueDateIntervalDays_and_validate_description(String taskType) {
VariableMap inputVariables = new VariableMapImpl();
Expand Down Expand Up @@ -610,7 +611,8 @@ void when_given_task_type_then_return_nextHearingDateFields_and_validate_descrip
"serviceOfApplicationFL401","adminServeOrderFL401","updateHearingActualsFL401",
"requestSolicitorOrderFL401", "reviewCorrespondenceFL401","produceHearingBundleFL401",
"removeLegalRepresentativeFL401", "replyToMessageForCourtAdminFL401",
"reviewDocumentsForSolAndCafcassFL401","listWithoutNoticeHearingC100","listOnNoticeHearingFL401","listWithoutNoticeHearingFL401"
"reviewDocumentsForSolAndCafcassFL401","listWithoutNoticeHearingC100",
"listOnNoticeHearingFL401","listWithoutNoticeHearingFL401"
})
void when_given_task_type_then_return_majorPriorityForValue1000_and_validate_description(String taskType) {
VariableMap inputVariables = new VariableMapImpl();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -838,6 +838,7 @@ void evaluate_task_admin_listWithoutNoticeC100(String taskType) {

)));
}

@ParameterizedTest
@CsvSource(value = {
"listOnNoticeHearingFL401","listWithoutNoticeHearingFL401"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ void if_this_test_fails_needs_updating_with_your_changes() {
DmnDecisionTableImpl logic = (DmnDecisionTableImpl) decision.getDecisionLogic();
assertThat(logic.getInputs().size(), is(1));
assertThat(logic.getOutputs().size(), is(2));
assertThat(logic.getRules().size(), is(46));
assertThat(logic.getRules().size(), is(47));
}
}

0 comments on commit 42c47e0

Please sign in to comment.