We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This test throws a javax.xml.stream.XMLStreamException when the XMLStreamWriter is closed using KiwiIO.closeQuietly, with the error message:
javax.xml.stream.XMLStreamException
XMLStreamWriter
KiwiIO.closeQuietly
Trying to write END_DOCUMENT when document has no root (ie. trying to output empty document).
As a result, we were not testing the case when closing it succeeds.
To fix, it can either be mocked, or we can use the XMLStreamWriter to write a simple XMl document, then close it.
The text was updated successfully, but these errors were encountered:
0bd415b
sleberknight
Successfully merging a pull request may close this issue.
This test throws a
javax.xml.stream.XMLStreamException
when theXMLStreamWriter
is closed usingKiwiIO.closeQuietly
, with the error message:As a result, we were not testing the case when closing it succeeds.
To fix, it can either be mocked, or we can use the
XMLStreamWriter
to write a simple XMl document, then close it.The text was updated successfully, but these errors were encountered: