mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 09:38:32 +01:00
18 lines
313 B
PHP
18 lines
313 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psl\Tests;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
abstract class IOTestCase extends TestCase
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
if ('Windows' === PHP_OS_FAMILY) {
|
|
static::markTestSkipped('Test cannot be executed on windows.');
|
|
}
|
|
}
|
|
}
|