Mercurial > hg > ltpda
view m-toolbox/classes/tests/ao/@test_ao_ao/test_copy.m @ 40:977eb37f31cb database-connection-manager
User friendlier errors from utils.mysql.connect
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 18:04:03 +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