Parameters for Matlab.unittest.TestCase
8 次查看(过去 30 天)
显示 更早的评论
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 个评论
Andy Campbell
2015-1-16
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?
回答(2 个)
David Hruska
2015-2-10
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 个评论
Ricardo Krause
2019-2-21
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Extend Testing Frameworks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!