Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 91f9872930bf66ea2c437041b89527ee061d1502 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Readme for Test Plugin:  org.eclipse.ecf.tests.presence.

For the test cases in this bundle, it's necessary to provide
as system properties the usernames and passwords for two users
and the name of a chat room available on given server.  If these
names are not given, then the tests will fail because they
won't be able to login to accounts to run the test cases.

The System Properties to specify are:

username0
password0
username1
password1
chat.room.name

So, for example, if slewis@ecf.eclipse.or and fliwatuet@ecf.eclipse.org are the two
accounts that should be used to run the tests, and the chat room ins "ecf" the
properties would look like this:

-Dusername0=slewis@ecf.eclipse.org \
-Dpassword0=username0password \
-Dusername1=fliwatuet@ecf.eclipse.org \
-Dpassword1=username1password \
-Dchat.room.name=ecf

Note that username0password and username1password would be the values of the 
respective account's passwords.

Back to the top