Mercurial > hg > ltpda
view m-toolbox/classes/tests/database/@ltpda_cdata_table/test_cdata_yunits.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 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% % DESCRIPTION: Tests the 'cdata' table of the database. % % CHECKS: - Check that the 'yunits' contains the correct % yunits from the test data. % % VERSION: $Id: test_cdata_yunits.m,v 1.2 2011/05/25 16:25:31 ingo Exp $ % function varargout = test_cdata_yunits(varargin) utp = varargin{1}; if ~utp.testRunner.skipRepoTests() dbTable = 'cdata'; tableField = 'yunits'; % Check that the metadata was set with a submit PLIST try for nn = 1:numel(utp.objIds) val = getTableEntry(utp, dbTable, tableField, utp.objIds(nn)); % Check that we get only one result for the query assert(numel(val)==1) % Check that the entry in the table is the same as the yunits of % the test data assert(strcmp(val{1}, char(utp.testData(nn).yunits))) end catch Me throw(Me); end varargout{1} = sprintf('Test the field ''%s'' of the database table ''%s'' with the database %s ', tableField, dbTable, utp.testRunner.repositoryPlist.find('database')); else varargout{1} = 'Skip database test'; end end