Unit Testing : Figures
16 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Simon Parten
il 4 Apr 2019
Commentato: Alex Kashuba
il 7 Giu 2020
My use case. I have some digraph plots, I'd like to verify the values on certain edges, hold the right values. What I'm doing, is plotting one figure per test, by calling
h = digraph.plot
verifySubstring(testCase, h.EdgeLabel{1}, '1,000,000')
However, what I'd also like, is then when all the test have fun, to get an overview, of each.
Normally, I'd try something like this;
alignFigures(figs)
Where align figures comes from the matlab file exchange, and figs is a list of the figures created through each of the independant unit tests.
What I can't figure out... is how to persist the figure references, through the test cases...
Any ideas? I realise this sort of defies the point of independant unit tests... but it would be quite helpful, in this specific use case.
3 Commenti
Alex Kashuba
il 7 Giu 2020
@Simon, this will never work. The reason is the mechnism of the TestRunner.
If you have 5 test in a test class, then TestRunner creates 7 instances of the Test class and in each instances runs only one test. This is done so in order that tests (that can run in random order would not interact)
Therefore all class properties are 'bare'.
Risposta accettata
Andy Campbell
il 4 Apr 2019
Modificato: Andy Campbell
il 4 Apr 2019
Does the approach outlined here work for your case?
1 Commento
Più risposte (1)
Steven Lord
il 4 Apr 2019
I believe the unit testing infrastructure tries not to let you do that sort of thing, as it means that you don't really have a four phase test. You're performing Setup, Exercise, and Verify but skipping Teardown. That could lead the software under test to be in a different state than it should be at the start of the next test, and could allow information to "leak" from one test method to another as you already mentioned.
If you were doing this to capture the figure when the Verify phase of your test method fails (to aid in debugging) you could use a FigureDiagnostic. If you wanted to capture all the figures in case any failure occurs then delete the saved figures if all the test methods passed, you could use a TemporaryFolderFixture with 'PreservingOnFailure' set to true then save the figures as .fig files in that temporary folder during each test method. If any failure occurs, the temporary folder will be spared; otherwise it and its contents will be deleted when the test finishes execution.
There are a couple other potential approaches I can think of, but before I mention them I'd like to know a little more about how you're planning to use all those figures.
Vedere anche
Categorie
Scopri di più su Testing Frameworks in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!