Skip to content

Commit b57c212

Browse files
Merge branch '2.8' into 3.2
* 2.8: Use PHPUnit 6.0 on PHP 7.* test lines
1 parent 7d8a20f commit b57c212

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Tests/Adapter/AdapterTestCase.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,18 @@
1313

1414
use Cache\IntegrationTests\CachePoolTest;
1515

16+
if (!class_exists('PHPUnit_Framework_TestCase')) {
17+
abstract class AdapterTestCase
18+
{
19+
public static function setUpBeforeClass()
20+
{
21+
self::markTestSkipped('cache/integration-tests is not yet compatible with namespaced phpunit versions.');
22+
}
23+
}
24+
25+
return;
26+
}
27+
1628
abstract class AdapterTestCase extends CachePoolTest
1729
{
1830
protected function setUp()

0 commit comments

Comments
 (0)