1
0
mirror of https://github.com/danog/file.git synced 2024-12-02 09:17:57 +01:00
file/test/FilesystemTest.php

21 lines
352 B
PHP
Raw Normal View History

2022-12-17 22:52:21 +01:00
<?php declare(strict_types=1);
2019-08-23 20:59:26 +02:00
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();
}
}