Blame view

sources/tests/phpunit-autotest.xml 1.76 KB
f7d878ff1   kload   [enh] Update to 7...
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
  <?xml version="1.0" encoding="utf-8" ?>
  <phpunit bootstrap="bootstrap.php"
  		 strict="true"
  		 verbose="true"
  		 timeoutForSmallTests="900"
  		 timeoutForMediumTests="900"
  		 timeoutForLargeTests="900"
  >
  	<testsuite name='ownCloud'>
  		<directory suffix='.php'>lib/</directory>
  		<file>apps.php</file>
  	</testsuite>
  	<!-- filters for code coverage -->
  	<filter>
  		<!-- whitelist processUncoveredFilesFromWhitelist="true" -->
  		<whitelist>
  			<directory suffix=".php">..</directory>
  			<exclude>
  				<directory suffix=".php">../3rdparty</directory>
  				<directory suffix=".php">../apps/files/l10n</directory>
  				<directory suffix=".php">../apps/files_external/l10n</directory>
  				<directory suffix=".php">../apps/files_external/3rdparty</directory>
  				<directory suffix=".php">../apps/files_versions/l10n</directory>
  				<directory suffix=".php">../apps/files_encryption/l10n</directory>
  				<directory suffix=".php">../apps/files_encryption/3rdparty</directory>
  				<directory suffix=".php">../apps/files_sharing/l10n</directory>
  				<directory suffix=".php">../apps/files_trashbin/l10n</directory>
  				<directory suffix=".php">../apps/user_ldap/l10n</directory>
  				<directory suffix=".php">../apps/user_webdavauth/l10n</directory>
  				<directory suffix=".php">../lib/MDB2</directory>
  				<directory suffix=".php">../lib/l10n</directory>
  				<directory suffix=".php">../core/l10n</directory>
  				<directory suffix=".php">../settings/l10n</directory>
  				<directory suffix=".php">../tests</directory>
  			</exclude>
  		</whitelist>
  	</filter>
  	<listeners>
  		<listener class="StartSessionListener" file="startsessionlistener.php" />
  	  <listener class="TestCleanupListener" file="testcleanuplistener.php">
  		<arguments>
  			<string>detail</string>
  		</arguments>
  	  </listener>
  	</listeners>
  </phpunit>