view m-toolbox/classes/tests/@ltpda_uoh_tests/test_procinfo.m @ 52:daf4eab1a51e
database-connection-manager tip
Fix. Default password should be [] not an empty string
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Wed, 07 Dec 2011 17:29:47 +0100 (2011-12-07)
parents
f0afece42f48
children
line source
+ − % Test the procinfo is [] by default.
+ − function res = test_procinfo(varargin)
+ −
+ − res = '';
+ − utp = varargin{1};
+ −
+ − if ~isempty(utp.className)
+ − obj = feval(utp.className);
+ − assert(isnumeric(obj.procinfo));
+ − assert(isempty(obj.procinfo));
+ − res = sprintf('%s has a valid procinfo', class(obj));
+ − end
+ −
+ − end