Parameters for Matlab.unittest.TestCase
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I would like to use the framework of TestCase/TestSuite/TestRunner. I want to do the same tests for different test cases. For actually implementing the tests I simple wrote a class derived from "TestCase" where the "methods (Test)" holds the implementation. I am instancing the TestSuite by "fromFolder" where my TestCase-class is located in order to be able to use it for different test cases with the same file structure. That works out fine.
Now I have to problem of transferring parameters to the TestCase-class in order to be able to use them in the setup process, i.e. different setup parameters for the different test cases.
The only solution I could come up with is writing control file to be read in the ClassSetupMethod - but that's not favourable in this situation. Is there a possibility of passing parameters on to the actual TestCase used in the TestRunner, e.g. when creating the instance of the TestCase? I mean online, i.e. different parameters for every run of the TestSuite, and not fixed Parameters like when using "properties (ClassSetupParameter)".
PS: I am using R2013a.
2 commentaires
Andy Campbell
le 16 Jan 2015
Couple questions. How many parameters are we talking about? Are the parameters known ahead of time or are they "dynamic" in some way? Also, is this for production use cases or for simple experimental cases?
Réponses (2)
David Hruska
le 10 Fév 2015
If you have access to R2014a or later, parameterized testing could still be an option. Parameter values are often hard-coded but they need not be. You could, for example, call a local function to determine the parameterization of your test:
classdef exampleTest < matlab.unittest.TestCase
properties (ClassSetupParameter)
Param = getParameterValues;
end
% Reset of the test code
end
function p = getParameterValues
% Determine paramterization
p = <whatever>
end
In this example, the "getParameterValues" function gets called when the class is parsed -- typically the first time you create the suite in a MATLAB session. The function won't get called again (and therefore you won't get a different parameterization) until you clear the class or start a new MATLAB session. If you can live with these limitations, parameterized testing might be worth a look.
1 commentaire
Ricardo Krause
le 21 Fév 2019
Hi @all,
in relation to this topic I've been thinking about the use of an IoC container which I like to use for different test cases in same tests.
I tried to setup my container as singleton in the TestRunner, but I struggle to make them available in my test classes.
Has anyone had any experience with this?
BR
0 commentaires
Voir également
Catégories
En savoir plus sur Extend Testing Frameworks dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!