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
{{ message }}
This repository has been archived by the owner on Feb 2, 2024. It is now read-only.
-------------------------------------------------------------------------------
Test set: eu.europa.ec.empl.edci.issuer.service.WorkBookEuroPassDynamicServiceTest
-------------------------------------------------------------------------------
Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.556 s <<< FAILURE! - in eu.europa.ec.empl.edci.issuer.service.WorkBookEuroPassDynamicServiceTest
eu.europa.ec.empl.edci.issuer.service.WorkBookEuroPassDynamicServiceTest Time elapsed: 0.556 s <<< ERROR!
org.mockito.exceptions.base.MockitoException:
Unable to initialize @Spy annotated field 'xmlUtil'.
Unable to create mock instance of type 'XmlUtil'
Caused by: org.mockito.exceptions.base.MockitoException: Unable to create mock instance of type 'XmlUtil'
Caused by: org.mockito.creation.instance.InstantiationException:
Unable to create instance of 'XmlUtil$MockitoMock$449244233'.
Please ensure the target class has a 0-arg constructor and executes cleanly.
Caused by: java.lang.reflect.InvocationTargetException
Caused by: java.lang.ExceptionInInitializerError
Caused by: java.lang.NullPointerException
as in not tracking the interactions with the class instance during tests, allows the tests to progress further (still without passing, though). Not sure if this would be beneficial or not, but as of now the project can't be compiled without making this replacement.
The text was updated successfully, but these errors were encountered:
Compilation of the project root
pom.xml
with the commandfails, as the tests in
do not pass. The specific error goes as follows:
Replacing the lines
with the lines
on lines 55--56 of
as in not tracking the interactions with the class instance during tests, allows the tests to progress further (still without passing, though). Not sure if this would be beneficial or not, but as of now the project can't be compiled without making this replacement.
The text was updated successfully, but these errors were encountered: