Mercurial > hg > ltpda
view m-toolbox/classes/tests/@ltpda_obj_tests/test_char.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 char() method returns a non-empty string. function res = test_char(varargin) utp = varargin{1}; % get test data data = utp.getTestData; if ~isempty(data) for kk=1:numel(data) d = data(kk); txt = char(d); assert(ischar(txt)); assert(~isempty(txt)); end end res = sprintf('%s/char seems to work', class(data)); end