PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Packages of Wolfy-J   spiral   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: spiral
Modular Web application development framework
Author: By
Last change: Turn off fail on deprecation
Merge pull request #986 from msmakouz/feature/snapshots-storage

[spiral/snapshots] Adding the ability to store snapshots using `Storage` component
PHPUnit 10 (#927)

* Static PHPUnit dataProviders
* Add expectExceptionMessage instead of expectErrorMessage
* Add addMethods instead of setMethods
* Fix tests with required name in the constructor
* Remove ok function
* Remove usage PHPUnit Error
* Fix EventsTest
* Replace withConsecutive with willReturnCallback
* Migrate phpunit config
* Add coverage config
* Fix issue with abstract classes
* Update PHP version in scrutinizer; add test groups to exclude some tests from scrutinizer testing
* Replace `group` annotations with attributes

---------

Co-authored-by: roxblnfk <roxblnfk@ya.ru>
Merging v2.12 into v3.0-dev (#658)

* SapiEmitter now emits streaming (#602)
* Support for generators in controllers (#625)
* Marking deprecated code (#641)
* Update psr/log versions
* Using `self.version` instead of `*` (#653)
Co-authored-by: Aleksei Gagarin <roxblnfk@ya.ru>
Co-authored-by: Pavel Buchnev <butschster@gmail.com>
Fixes unit tests
Fixes unit tests
Merge branch '2.9' into cleanup
Merge pull request #444 from vladgorenkin/inject-with-interfaces

Allow injectors to inject interfaces
Merge branch '2.7' of github.com:spiral/framework
Merge spiral/console component
Fix spiral/core tests
Date: 1 month ago
Size: 1,824 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" bootstrap="vendor/autoload.php" cacheDirectory="runtime/phpunit" backupGlobals="false" colors="true" processIsolation="false" failOnRisky="false" stopOnFailure="false" stopOnError="false" stderr="true" backupStaticProperties="false" failOnDeprecation="false" failOnPhpunitDeprecation="false" displayDetailsOnPhpunitDeprecations="true" displayDetailsOnTestsThatTriggerDeprecations="true" > <coverage> <report> <html outputDirectory="build/coverage"/> <text outputFile="build/coverage.txt"/> <clover outputFile="build/logs/clover.xml"/> </report> </coverage> <logging> <junit outputFile="build/report.junit.xml"/> </logging> <testsuites> <testsuite name="Components Test Suite"> <directory suffix="Test.php">src/*/tests</directory> </testsuite> <testsuite name="Bridges Test Suite"> <directory suffix="Test.php">src/Bridge/*/tests</directory> </testsuite> <testsuite name="Framework Test Suite"> <directory>tests</directory> </testsuite> </testsuites> <php> <ini name="error_reporting" value="8191"/> <ini name="memory_limit" value="-1"/> </php> <source> <include> <directory>src</directory> <directory>src/*/src</directory> </include> <exclude> <directory>src/*/tests</directory> <directory>tests</directory> </exclude> </source> </phpunit>