mirror of
https://codeberg.org/icewind/SMB.git
synced 2026-06-03 09:14:06 +02:00
16 lines
466 B
PHP
16 lines
466 B
PHP
<?php
|
|
/**
|
|
* Copyright (c) 2015 Robin Appelman <icewind@owncloud.com>
|
|
* This file is licensed under the Licensed under the MIT license:
|
|
* http://opensource.org/licenses/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');
|
|
}
|
|
}
|
|
}
|