endtoend-test-psl/tests/Psl/IOTestCase.php

18 lines
313 B
PHP
Raw Normal View History

2021-03-18 16:03:21 +01:00
<?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.');
}
}
}