-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Closed
Labels
testsystemThe unit testing framework and Test stdlibThe unit testing framework and Test stdlib
Description
Right now the testing infrastructure itself discards all information for passing tests.
The Pass
result type has fields for all the information, and a show method that would display it, but they are all blanked out with nothing
etc as their values.
Line 432 in 6a45619
value ? Pass(:test, nothing, nothing, value) : |
Determining whether or not to do this should not be done there.
It should be done in the record
method of the testset.
That way it can be configured.
record(::DefaultTestSet, ::Pass)
already discards the pass result entirely anyway.
I don't even think doing it later will cost memory, all that information is being captured anyway so that it can be reported for Failure/
DilumAluthge and nickrobinson251
Metadata
Metadata
Assignees
Labels
testsystemThe unit testing framework and Test stdlibThe unit testing framework and Test stdlib