view m-toolbox/classes/tests/@ltpda_obj_tests/test_display.m @ 2:18e956c96a1b
database-connection-manager
Add LTPDADatabaseConnectionManager implementation. Matlab code
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Sun, 04 Dec 2011 21:23:09 +0100 (2011-12-04)
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