Mercurial > hg > ltpda
view m-toolbox/classes/tests/@ltpda_uo_tests/test_save_load.m @ 41:6def6533cb16 database-connection-manager
Report authentication errors to user
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 18:04:34 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% Test the save and load methods work. function res = test_save_load(varargin) res = ''; utp = varargin{1}; if ~isempty(utp.className) % Test object obj = utp.getTestData; % Test MAT fname = [tempname '.mat']; save(obj, fname); new = feval(utp.className, fname); delete(fname); assert(new == obj); % Test XML fname = [tempname '.xml']; save(obj, fname); new = feval(utp.className, fname); delete(fname); assert(new == obj); res = sprintf('Saving and loading objects of class %s works', class(obj)); end end