view m-toolbox/test/xml_tests/test_timeformat.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
clear all;
default_matlab_str = 'yyyy-mm-dd HH:MM:SS';
default_matlab_nr = 31;
default_java_str = 'yyyy-MM-dd HH:mm:ss';
tf1 = timeformat(getappdata(0, 'time_format_str'),...
default_matlab_str,...
default_matlab_nr,...
default_java_str);
xmlfile = 'timeformat.xml';
save(tf1, xmlfile);
% load
tf2 = timeformat(xmlfile);
if tf1 ~= tf2
error('### timeformats are not the same')
end