Mercurial > hg > ltpda
comparison testing/utp_1.1/utp_fcns/utpGetPassword.m @ 45:a59cdb8aaf31 database-connection-manager
Merge
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Tue, 06 Dec 2011 19:07:22 +0100 |
parents | 409a22968d5e |
children | 9d5c88356247 |
comparison
equal
deleted
inserted
replaced
42:f90d4f666cc7 | 45:a59cdb8aaf31 |
---|---|
1 % UTPGETPASSWORD returns the password for the repository tests. | |
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
3 % | |
4 % DESCRIPTION: UTPGETPASSWORD returns the password for the repository | |
5 % tests. | |
6 % | |
7 % CALL: password = utpGetPassword() | |
8 % | |
9 % VERSION: $Id: utpGetPassword.m,v 1.4 2010/07/26 16:43:37 hewitson Exp $ | |
10 % | |
11 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
12 | |
13 function password = utpGetPassword() | |
14 | |
15 password = getappdata(0, 'LTPDARepoPassword'); | |
16 if isempty(password) | |
17 password = 'a1b2c3d4'; | |
18 end | |
19 | |
20 end |