Added config test

This commit is contained in:
Filip Izydorczyk
2020-09-04 16:24:00 +02:00
parent 16b9cb3cf2
commit 7a7c882163
4 changed files with 33 additions and 7 deletions

View File

@ -27,4 +27,8 @@ public class GroupService {
public void save(Groups group) {
this.repo.save(group);
}
public int getGroupsAmmount(){
return (int)this.repo.count();
}
}