view testing/utp_1.1/utp_fcns/utpGetConnectionPlist.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 7d2e2e065cf1
children
line wrap: on
line source

% UTPGETCONNECTIONPLIST returns the connection plist for the repository tests.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: UTPGETCONNECTION returns the connection plist for the
%              repository tests.
%
% CALL:        conn = utpGetConnectionPlist()
%
% VERSION:     $Id: utpGetConnectionPlist.m,v 1.2 2010/02/01 18:42:38 ingo Exp $
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

function connPl = utpGetConnectionPlist()
  
  connPl = plist('hostname', utpGetHostname, 'database', utpGetDatabase, 'username', utpGetUsername);
  
end