view m-toolbox/classes/tests/@ltpda_obj_tests/test_copy.m @ 0:f0afece42f48
Import.
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Wed, 23 Nov 2011 19:22:13 +0100 (2011-11-23)
parents
children
line source
+ − % Test the copy() method works.
+ − function res = test_copy(varargin)
+ −
+ − utp = varargin{1};
+ −
+ − % get test data
+ − data = utp.getTestData;
+ − if ~isempty(data)
+ − % shallow copy
+ − c = copy(data,0);
+ − assert(c==data);
+ − % deep copy
+ − c = copy(data,1);
+ − % The deep copy should not be the same object. At least the UUID
+ − % changes.
+ − % assert(c~=data);
+ − % Check with the appropriate exceptions
+ − % LTPDAprefs('Display', 'verboseLevel', 2);
+ − assert(eq(c,data,utp.configPlist));
+ − % LTPDAprefs('Display', 'verboseLevel', -1);
+ − end
+ −
+ − res = sprintf('%s/copy seems to work', class(data));
+ − end