You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ho hem mirat bastant però no trobem el error, al fer un add() a la llista de competitions salta una NullPointerException, però la llista sembla ben inicialitzada al constructor.
Hem provat a fer-ho pas per pas:
List competition = new ArrayList();
competitions = team1.getCompetitions();
competitions222.add(comp);
team1.setCompetitions(competitions222);
Pero salta la exception al fer el add. Hi ha algun problema per fer un add a una llista que està buida?
Sisplau, a InscriptionTeamIntegTest queda per resoldre el test competitionInscriptionPeriodClosed. En particular, cal refer l'operació periodOpen.
També us proposo que simplifiqueu checkForException(comp,team)
A InscriptionTeamTest, en alguns testos només cal comprovar que es fa la interacció correcta. No cal verificar que la BD s'ha modificat adequadament perquè, com és un mock , en realitat, no es modifica.
He fet modificacions a l'entitat Team perquè estava mal fet el mapeig amb Competition.
Concretament, hi havia l'atribut:
class Team{
Competition competition;
}
I havia de ser
class Team{
List competitions;
}
Però aquesta modificació ha afectat InscriptionTeamTest, que ara no s'executa correctament. Podeu resoldre-ho?
The text was updated successfully, but these errors were encountered: