Skip to content

Commit

Permalink
updating jacoco to try to include test coverage. code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
soletsdev committed Feb 7, 2024
1 parent b144019 commit a6573a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.4</version>
<version>0.8.8</version>
</plugin>
<plugin>
<groupId>org.hibernate.orm.tooling</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ public void testGetStudentRegistrationContactEmailsByMincode_givenDifferentInput
String mincodeNotExist = "123546789";
when(this.restUtils.getStudentRegistrationContactList(mincodeNotExist)).thenReturn(studentRegistrationContactMap.get(mincodeNotExist));
var dataList2 = this.service.getStudentRegistrationContactEmailsByMincode(mincodeNotExist);
assertThat(dataList2).hasSize(0);
assertThat(dataList2).isEmpty();
}
}

0 comments on commit a6573a5

Please sign in to comment.