Mercurial > hg > ltpda
view testing/utp_1.1/utps/collection/utp_collection_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_COLLECTION_COPY a set of UTPs for the collection/copy method % % M Hewitson 06-08-08 % % $Id: utp_collection_copy.m,v 1.1 2009/08/11 14:07:45 hewitson Exp $ % % <MethodDescription> % % The copy method of the collection class copies the input object depending of the % second input. % % </MethodDescription> function results = utp_collection_copy(varargin) % Check the inputs if nargin == 0 % Some keywords class = 'collection'; 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