diff m-toolbox/classes/tests/@ltpda_obj_tests/test_copy.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/m-toolbox/classes/tests/@ltpda_obj_tests/test_copy.m	Wed Nov 23 19:22:13 2011 +0100
@@ -0,0 +1,24 @@
+% Test the copy() method works.
+function res = test_copy(varargin)
+  
+  utp = varargin{1};
+  
+  % get test data
+  data = utp.getTestData;
+  if ~isempty(data)
+    % shallow copy
+    c = copy(data,0);
+    assert(c==data);
+    % deep copy
+    c = copy(data,1);
+    % The deep copy should not be the same object. At least the UUID
+    % changes.
+%     assert(c~=data);
+    % Check with the appropriate exceptions
+%     LTPDAprefs('Display', 'verboseLevel', 2);
+    assert(eq(c,data,utp.configPlist));
+%     LTPDAprefs('Display', 'verboseLevel', -1);
+  end
+  
+  res = sprintf('%s/copy seems to work', class(data));
+end
\ No newline at end of file