comparison m-toolbox/classes/tests/@ltpda_uo_tests/test_string.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f0afece42f48
1 % Test the string method works.
2 function res = test_string(varargin)
3
4 res = '';
5 utp = varargin{1};
6
7 if ~isempty(utp.className)
8 obj = feval(utp.className);
9 str = string(obj);
10 sobj = eval(str);
11 % check that eval(str) creates the same type of object
12 assert(isa(sobj, utp.className));
13 res = sprintf('%s/string works', class(obj));
14 end
15
16 end