blob: 850a47cc4942e7c17ce14662f64efd047cb76c6e (
plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# This file contains the recommended set of properties to initialize
# the sip-communicator unit testing environment.
# define all the tests to be run by the test target of the project.
#
# n.b. if you do not want to run some of them and edit this list, be careful
# NOT to commit your changed file to the project repository!
#
# n.b. a multi-line continuation is marked with {white-space + back-slash + newline}.
# Comments cannot be embedded in a multi-line value list!
#
net.java.sip.communicator.slick.runner.TEST_LIST=ConfigurationServiceLick \
NetworkAddressManagerServiceLick \
FileAccessServiceLick \
HistoryServiceLick \
SlicklessTests \
MsgHistoryServiceLick \
CallHistoryServiceLick \
MetaHistoryServiceSLick \
JabberProtocolProviderSlick \
SipProtocolProviderServiceLick \
PopupMessageHandlerSLick
# Note that NetworkAddressManagerServiceLick currently runs
# successfully because it sets up ZERO tests - the
# addSuite calls are commented-out in start().
# The following tests should currently not be executed:-
#
# NetworkAddressManagerServiceLick currently sets up ZERO tests
# because the addSuite calls are commented-out in start().
#
# MediaServiceLick because one of the 2 tests fails.
#
# GenericProtocolProviderServiceLick because it does not add any tests.
#
# IcqProtocolProviderSlick because 2 of its 25 tests fail.
#
# Temporally disabling failing test
# MsnProtocolProviderSlick
# YahooProtocolProviderSlick
# define all the test classes that can be run standalone, or by the
# SlicklessTests bundle under felix.
#
# n.b. you must code fully qualified names for the classes (unlike TEST_LIST above).
#
# n.b. if you do not want to run some of them and edit this list, be careful
# NOT to commit your changed file to the project repository!
#
# n.b. a multi-line continuation is marked with {white-space + back-slash + newline}.
# Comments cannot be embedded in a multi-line value list!
#
net.java.sip.communicator.slick.runner.SLICKLESS_TEST_LIST= \
net.java.sip.communicator.slick.slickless.util.TestBase64 \
net.java.sip.communicator.slick.slickless.util.xml.TestXMLUtils
# Set a different name for the meta contact list file that will be used
# during testing so the "live" client file does not get changed.
#
net.java.sip.communicator.CONTACTLIST_FILE_NAME=testing.contactlist.xml
# Set a different name of the configuration file that will be used
# during testing so the "live" client file does not get changed.
#
net.java.sip.communicator.CONFIGURATION_FILE_NAME=testing.sip-communicator.xml
|