Support for SIP (Work in Progress)

set display name of installed test accounts
cusax-fix
Emil Ivov 19 years ago
parent 269bb26028
commit 93438dc284

@ -185,6 +185,19 @@ private Hashtable getAccountProperties(String accountPrefix)
table.put(ProtocolProviderFactory.USER_ID, userID);
String displayName = System.getProperty(
accountPrefix + ProtocolProviderFactory.DISPLAY_NAME, null);
assertNotNull(
"The system property named "
+ accountPrefix + ProtocolProviderFactory.DISPLAY_NAME
+ " has to contain a valid name string that could be used during "
+ "SIP Communicator's tests."
, displayName);
table.put(ProtocolProviderFactory.DISPLAY_NAME, displayName);
String passwd = System.getProperty(
accountPrefix + ProtocolProviderFactory.PASSWORD, null );

Loading…
Cancel
Save