Commit aa8aac9a authored by Noel Alonso's avatar Noel Alonso
Browse files

Arregla tests por cambio en campo a notnull

parent 75f94d82
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -63,6 +63,14 @@ public class CitationPropertiesDTOTest extends DTOBaseTest<CitationPropertiesDTO
		checkDTOHasError(dto, NOT_NULL_MESSAGE_TEMPLATE);
	}

	@Test
	public void validationDTO_ReturnNotNullError_IfConfidenceIsNull() {

		dto.setConfidence(null);

		checkDTOHasError(dto, NOT_NULL_MESSAGE_TEMPLATE);
	}

	@Test
	public void validationDTO_ReturnNotNullError_IfTaxonIsNull() {