Skip to content

Commit

Permalink
Tests coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
arybakov-cgi committed Feb 15, 2024
1 parent 47230b1 commit 7e3653b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1130,7 +1130,8 @@ public void testDeleteCRUDStudentGradOptionalProgram() {
graduationStatusService.deleteStudentGradOptionalProgram(studentID, optionalProgramID, "AB");
assertThat(graduationStudentRecordEntity).isNotNull();

assertThrows(EntityNotFoundException.class, () -> graduationStatusService.deleteStudentGradOptionalProgram(studentID, UUID.randomUUID(), "CD"));
UUID gradStudentOptionalProgramID2 = UUID.randomUUID();
assertThrows(EntityNotFoundException.class, () -> graduationStatusService.deleteStudentGradOptionalProgram(studentID, gradStudentOptionalProgramID2, "CD"));

}

Expand Down

0 comments on commit 7e3653b

Please sign in to comment.