Mercurial > hg > ltpda
comparison testing/utp_1.1/utps/pest/utp_pest_setNames.m @ 44:409a22968d5e default
Add unit tests
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Tue, 06 Dec 2011 18:42:11 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
43:bc767aaa99a8 | 44:409a22968d5e |
---|---|
1 % UTP_PEST_SETNAMES a set of UTPs for the pest/setNames method | |
2 % | |
3 % M Hewitson 06-08-08 | |
4 % | |
5 % $Id: utp_pest_setNames.m,v 1.4 2011/04/06 19:14:54 ingo Exp $ | |
6 % | |
7 | |
8 % <MethodDescription> | |
9 % | |
10 % The setNames method of the pest class sets the names property. | |
11 % | |
12 % </MethodDescription> | |
13 | |
14 function results = utp_pest_setNames(varargin) | |
15 | |
16 % Check the inputs | |
17 if nargin == 0 | |
18 | |
19 % Some keywords | |
20 class = 'pest'; | |
21 mthd = 'setNames'; | |
22 prop = 'names'; | |
23 | |
24 disp('******************************************************'); | |
25 disp(['**** Running UTPs for ' class '/' mthd]); | |
26 disp('******************************************************'); | |
27 | |
28 % Test objects | |
29 pe1 = pest([8, 9]); | |
30 pe1.setName; | |
31 pe2 = pest([1 2]); | |
32 pe2.setName; | |
33 pe3 = pe1; | |
34 | |
35 pev = [pe1, pe2, pe1]; | |
36 pem = [pe1, pe2, pe1; pe1, pe2, pe1]; | |
37 | |
38 % Exception list for the UTPs: | |
39 [ple1,ple2,ple3,ple4,ple5,ple6] = get_test_ples(); | |
40 | |
41 % The setter method have different possibilities to set a property | |
42 val1 = 'MyParamName'; | |
43 val2 = {'MyParamName1', 'MyParamName2'}; | |
44 val3 = plist(prop, 'MyParamName'); | |
45 | |
46 % Run the general tests | |
47 results(1) = utp_genericSet_minfo(mthd, pe1, prop, @algoTests_minfo); % test getInfo call | |
48 results(2) = utp_genericAnyShape(mthd, pev, val1, @algoTests); % test vector | |
49 results(3) = utp_genericAnyShape(mthd, pev, val2, @algoTests); % test vector | |
50 results(4) = utp_genericAnyShape(mthd, pev, val3, @algoTests); % test vector call with plist | |
51 results(5) = utp_genericAnyShapeInternal(mthd, pev, val1, @algoTestsInternal); % test internal vector call | |
52 results(6) = utp_genericAnyShape(mthd, pem, val1, @algoTests); % test matrix call | |
53 results(7) = utp_genericAnyShape(mthd, pem, val3, @algoTests); % test matrix call with plist | |
54 results(8) = utp_genericAnyShapeInternal(mthd, pem, val1, @algoTestsInternal); % test internal matrix call | |
55 results(9) = utp_genericList(mthd, pe1, pe2, pe3, val1, @algoTests); % test list | |
56 results(10) = utp_genericList(mthd, pe1, pe2, pe3, val3, @algoTests); % test list with plist | |
57 results(11) = utp_genericList(mthd, pe1, pev, pem, val1, @algoTests); % test mixed shape of input objs | |
58 results(12) = utp_genericHistory(mthd, pe1, val1, ple2); % test the history | |
59 results(13) = utp_genericModify(mthd, pe1, val1, @algoTests, ple1); % test the modifier call | |
60 results(14) = utp_genericOutput(mthd, pe1, pe2, val1, @algoTests, ple2); % test the outputs | |
61 | |
62 disp('Done.'); | |
63 disp('******************************************************'); | |
64 | |
65 elseif nargin == 1 % Check for UTP functions | |
66 if strcmp(varargin{1}, 'isutp') | |
67 results = 1; | |
68 else | |
69 results = 0; | |
70 end | |
71 else | |
72 error('### Incorrect inputs') | |
73 end | |
74 | |
75 % Check that the default value un the PLIST | |
76 function atest = algoTests_minfo(defVal) | |
77 atest = true; | |
78 % Check default value for the key 'names' | |
79 if ~eq(defVal, []), atest = false; end | |
80 end | |
81 | |
82 % Check that the property have the correct value | |
83 function atest = algoTests(in, out, idx, value) | |
84 atest = true; | |
85 % Check that the input and output objects are the same except the | |
86 % property 'names' and the history | |
87 ple = plist('EXCEPTIONS', {'created', 'proctime', 'UUID', 'hist', prop}); | |
88 if ~eq(in(idx), out(idx), ple), atest = false; end | |
89 if ~eq(in(idx).hist, out(idx).hist.inhists), atest = false; end | |
90 % Check that the parameter gets the correct value. | |
91 if isa(value, 'plist') && value.nparams == 1 && value.isparam(prop) | |
92 % The value was set with a plist. | |
93 if ~isequal(out(idx).(prop), cellstr(value.find(prop))), atest = false; end | |
94 else | |
95 if ~isequal(out(idx).(prop), cellstr(value)'), atest = false; end | |
96 end | |
97 end | |
98 | |
99 % Check that the property have the correct value for an internal call | |
100 function atest = algoTestsInternal(in, out, idx, value) | |
101 atest = true; | |
102 % Check that the input and output objects are the same except the | |
103 % property 'names' and the history | |
104 ple = plist('EXCEPTIONS', {'created', 'proctime', 'UUID', prop}); | |
105 if ~eq(in(idx), out(idx), ple), atest = false; end | |
106 % Check that the parameter gets the correct value. | |
107 if ~isequal(out(idx).(prop), cellstr(value)), atest = false; end | |
108 end | |
109 | |
110 | |
111 end |