如何为每个测试套件初始化一次变量,以便它们在每个测试中可见?例如,可以加载一些文件,每个测试都需要这些文件。
问问题
1034 次
2 回答
1
根据 Matlab xUnit 文档:您可以 1)从 TestCase 继承或 2)使用子函数。使用子函数的示例如下所示。您只能传递一个变量,因此您必须将它们加载到结构中,如下所示。您可以将其他子函数放在末尾,但请确保以“setup”、“test”或“teardown”开始或结束它们的名称
function test_suite = testjkcmInputParser
initTestSuite;
function d = setup
d.file='garbagelog.log';
d.fid = fopen(d.file, 'w');
d.o = jkcmInputParser(d.fid);
function teardown(d)
delete(d.o);
fclose(d.fid);
delete(d.file);
function testConstructorNoInput(d)
%constructor without fid
delete(d.o);
d.o = jkcmInputParser();
assertEqual(isa(d.o,'jkcmInputParser'), true, 'not a jkcmInputParser');
assertEqual(isa(d.o,'inputParser'), true, 'not an inputParser');
function testConstructorWithInput(d)
%constructor with fid
assertEqual(isa(d.o,'jkcmInputParser'), true, 'not a jkcmInputParser');
assertEqual(isa(d.o,'inputParser'), true, 'not an inputParser');
initializejkcmParser(d.o);
s = d.o.printHelp();
assertEqual(s, correctPrintHelp(), 'output of printHelp does not match expected.');
function outP = initializejkcmParser(o)
%setup jkcmInputParser
o.addRequired('val1_noComment', @isnumeric);
o.addRequired('val2', @isnumeric, 'comment');
o.addOptional('val3_noComment',3, @isnumeric);
o.addOptional('val4',15, @isnumeric, 'another great comment!');
o.addParamValue('val5_noComment', 45, @isnumeric);
o.addParamValue('val6', 45, @isnumeric, 'This is the greatest comment');
outP = o;
function outP = correctPrintHelp()
outP = sprintf(...
['val1_noComment: Req : \n',...
'val2: Req : comment\n',...
'val3_noComment: Opt : \n',...
'val4: Opt : another great comment!\n',...
'val5_noComment: Param : \n',...
'val6: Param : This is the greatest comment\n']);
于 2012-03-10T22:48:39.860 回答
1
在 R2013a 中,MATLAB 包含一个功能齐全的测试框架。它包含的功能之一是能够为整个类定义设置/拆卸代码。
http://www.mathworks.com/help/matlab/matlab-unit-test-framework.html
于 2013-07-09T21:37:06.360 回答