File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1717 global :
1818 - TEST_COMMAND="composer test"
1919 matrix :
20- - SYMFONY_VERSION=3.2 .*
20+ - SYMFONY_VERSION=3.3 .*
2121 - SYMFONY_VERSION=2.3.*
2222
2323matrix :
2424 fast_finish : true
2525 include :
2626 - php : 5.5
2727 env : COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="composer test-ci" SYMFONY_VERSION=2.3.*
28+ - php : 7.1
29+ env : SYMFONY_VERSION=4.0.*
2830
2931install :
3032 - composer require symfony/symfony:${SYMFONY_VERSION} --no-update
Original file line number Diff line number Diff line change 1313 "php" : " ^5.5 || ^7.0"
1414 },
1515 "require-dev" : {
16- "phpunit/phpunit" : " ^4.5 || ^5.4 " ,
17- "symfony/symfony" : " ^2.3 || ^3.0"
16+ "phpunit/phpunit" : " ^4.8.36 || ^5.5 || ^6.2 " ,
17+ "symfony/symfony" : " ^2.3 || ^3.0 || ^4.0 "
1818 },
1919 "autoload" : {
2020 "psr-4" : { "Nyholm\\ BundleTest\\ " : " src/" }
2525 "scripts" : {
2626 "test" : " vendor/bin/phpunit" ,
2727 "test-ci" : " vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
28- }
28+ },
29+ "minimum-stability" : " dev" ,
30+ "prefer-stable" : true
2931}
Original file line number Diff line number Diff line change 22
33namespace Nyholm \BundleTest ;
44
5+ use PHPUnit \Framework \TestCase ;
56use Symfony \Component \DependencyInjection \ResettableContainerInterface ;
67use Symfony \Component \HttpKernel \Kernel ;
78
89/**
910 * @author Tobias Nyholm <[email protected] > 1011 */
11- abstract class BaseBundleTestCase extends \PHPUnit_Framework_TestCase
12+ abstract class BaseBundleTestCase extends TestCase
1213{
1314 /**
1415 * @var AppKernel
You can’t perform that action at this time.
0 commit comments