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
We have a need to write out out results in nunit format for reporting purposes. I could overwrite the Base.print function and hide the current function, but I would rather reach out to see if there are plans to include this in the architecture of the project or if you would be willing to add a hook for this behavior as in:
function Base.print(io::IO, suite::TestSuite, writer::TestSuiteResultsWriter=nothing)
if writer ==nothing
writer =DefaultTestSuiteResultsWriter()
end
writer.write(io, suite)
end
This would mean that as a part of the facts function we would need a way of providing the writer, which could be an argument following the description.
We have a need to write out out results in nunit format for reporting purposes. I could overwrite the Base.print function and hide the current function, but I would rather reach out to see if there are plans to include this in the architecture of the project or if you would be willing to add a hook for this behavior as in:
This would mean that as a part of the facts function we would need a way of providing the writer, which could be an argument following the description.