view m-toolbox/classes/tests/@ltpda_obj_tests/test_display.m @ 31:a26669b59d7e
database-connection-manager
Update LTPDAworkbench
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 16:20:06 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ − % Test the display() method returns a non-empty string.
+ − function res = test_display(varargin)
+ −
+ − utp = varargin{1};
+ −
+ − % get test data
+ − data = utp.getTestData;
+ − for kk=1:numel(data)
+ − d = data(kk);
+ − txt = display(d);
+ − assert(iscell(txt));
+ − assert(~isempty(txt));
+ − end
+ − res = sprintf('%s/char seems to work', class(data));
+ −
+ − end