mirror of
https://codeberg.org/icewind/SMB.git
synced 2026-06-03 09:14:06 +02:00
15 lines
399 B
PHP
15 lines
399 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2015 Robin Appelman <robin@icewind.nl>
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
namespace Icewind\SMB\Test;
|
|
|
|
abstract class TestCase extends \PHPUnit\Framework\TestCase {
|
|
protected function requireBackendEnv($backend) {
|
|
if (getenv('BACKEND') and getenv('BACKEND') !== $backend) {
|
|
$this->markTestSkipped('Skipping tests for ' . $backend . ' backend');
|
|
}
|
|
}
|
|
}
|