mirror of
https://github.com/danog/file.git
synced 2024-12-02 09:17:57 +01:00
21 lines
327 B
PHP
21 lines
327 B
PHP
<?php
|
|
|
|
namespace Amp\File\Test;
|
|
|
|
use Amp\PHPUnit\AsyncTestCase;
|
|
|
|
abstract class FilesystemTest extends AsyncTestCase
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
Fixture::init();
|
|
}
|
|
|
|
protected function tearDown(): void
|
|
{
|
|
parent::tearDown();
|
|
Fixture::clear();
|
|
}
|
|
}
|