view m-toolbox/classes/tests/ao/@test_ao_ao/test_copy.m @ 26:ce4df2e95a55 database-connection-manager

Remove LTPDARepositoryManager initialization
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 16:20:06 +0100
parents f0afece42f48
children
line wrap: on
line source

% Test the copy() method works for AOs.
function res = test_copy(varargin)
  
  utp = varargin{1};
  
  % Make a complicated test AO
  a = ao(plist('tsfcn', 't', 'fs', 1.3, 'nsecs', 10,...
    'name', 'test ao', ...
    'description', 'description of this ao', ...
    'xunits', 'm', ...
    'yunits', 'N'));
    
  a.setPlotinfo(plist('color', 'r'));
  a.setProcinfo(plist('test', 123));

  utp.testData = a;
  
  % Set the exceptions in the config plist
  utp.configPlist = plist('Exceptions', {'UUID'});

  % Call super
  res = test_copy@ltpda_uoh_tests(utp);
end