view m-toolbox/classes/tests/@ltpda_obj_tests/test_copy.m @ 1:2014ba5b353a database-connection-manager

Remove old code
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Sat, 03 Dec 2011 18:13:55 +0100
parents f0afece42f48
children
line wrap: on
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