Skip to content
Snippets Groups Projects
Select Git revision
  • Hotfix/2130-uiv2ContactChange
  • main default protected
  • dev protected
  • Issue/3160-deactivateDownloadForFolders
  • Issue/3111-fixLoadingGitLabResource
  • Issue/3133-subProjectsChanges
  • Issue/3139-dsnrw
  • Issue/3167-changeTextAndAddLink
  • Issue/3070-newIconsForResourceTypes
  • Issue/3145-redesignLoginPage
  • Issue/3093-moreInformationInTheDeletionEmails
  • Issue/3040-closeTokenWindowWithXButton
  • Issue/3152-fixResourceStore
  • Issue/xxxx-DuckDBTest
  • Issue/3152-fixUpdateRequestPayload
  • Issue/2489-addNotificationManagement
  • Issue/3138-tooltipForDisabledCreateActions
  • Issue/3136-orderResourcesInAlphabeticalOrder
  • Issue/3119-respOrg-vol2
  • Issue/3119-respOrg
  • Issue/3129-improvmentsResourceCreation
  • v3.18.0
  • v3.17.2
  • v3.17.1
  • v3.17.0
  • v3.16.1
  • v3.16.0
  • v3.15.6
  • v3.15.5
  • v3.15.4
  • v3.15.3
  • v3.15.2
  • v3.15.1
  • v3.15.0
  • v3.14.0
  • v3.13.1
  • v3.13.0
  • v3.12.0
  • v3.11.0
  • v3.10.1
  • v3.9.3-hotfix3017
41 results

index.html

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    phpunit.xml 1.23 KiB
    <?xml version="1.0"?>
    <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    	xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.3/phpunit.xsd"
    	backupGlobals="true"
    	backupStaticAttributes="false"
    	bootstrap="vendor/autoload.php"
    	cacheTokens="false"
    	colors="true"
    	convertErrorsToExceptions="true"
    	convertNoticesToExceptions="true"
    	convertWarningsToExceptions="true"
    	forceCoversAnnotation="false"
    	mapTestClassNameToCoveredClassName="false"
    	processIsolation="false"
    	stopOnError="false"
    	stopOnFailure="false"
    	stopOnIncomplete="false"
    	stopOnSkipped="false"
    	stopOnRisky="false"
    	testSuiteLoaderFile="tests"
    	timeoutForSmallTests="1"
    	timeoutForMediumTests="10"
    	timeoutForLargeTests="60"
    	verbose="true">
    	<testsuites>
    		<testsuite name="My Test Suite">
    			<directory>tests</directory>
    		</testsuite>
    	</testsuites>
    	<filter>
    		<whitelist processUncoveredFilesFromWhitelist="true">
    			<directory suffix=".php">src</directory>
    			<!-- <file>/path/to/file</file> -->
    			<!-- <exclude> -->
    				<!-- 	<directory suffix=".php">/path/to/files</directory> -->
    				<!-- 	<file>/path/to/file</file> -->
    				<!-- </exclude> -->
    		</whitelist>
    	</filter>
    	<logging>
    		<log type="coverage-clover" target="reports/clover.xml"/>
    	</logging>
    </phpunit>