Mercurial > hg > ltpda
view testing/utp_1.1/utps/pest/utp_pest_copy.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 |
line wrap: on
line source
% UTP_PEST_COPY a set of UTPs for the pest/copy method % % M Hewitson 06-08-08 % % $Id: utp_pest_copy.m,v 1.1 2010/02/07 15:11:03 ingo Exp $ % % <MethodDescription> % % The copy method of the pest class copies the input object depending of the % second input. % % </MethodDescription> function results = utp_pest_copy(varargin) % Check the inputs if nargin == 0 % Some keywords class = 'pest'; mthd = 'copy'; results = []; disp('******************************************************'); disp(['**** Running UTPs for ' class '/' mthd]); disp('******************************************************'); % Exception list for the UTPs: [ple1,ple2,ple3,ple4,ple5,ple6] = get_test_ples(); % Run the tests results = [results utp_69(class, 1, 1, ple2)]; results = [results utp_69(class, 1, 3, ple2)]; results = [results utp_69(class, 2, 3, ple2)]; disp('Done.'); disp('******************************************************'); elseif nargin == 1 % Check for UTP functions if strcmp(varargin{1}, 'isutp') results = 1; else results = 0; end else error('### Incorrect inputs') end end