Skip to content

Commit

Permalink
Various updates (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaEstes authored Oct 18, 2024
1 parent 260b092 commit 75580e6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
6 changes: 0 additions & 6 deletions Tests/Adapter/NullAdapterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,14 @@
namespace SonsOfPHP\Component\Filesystem\Tests\Adapter;

use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\CoversNothing;
use PHPUnit\Framework\Attributes\DoesNotPerformAssertions;
use PHPUnit\Framework\TestCase;
use SonsOfPHP\Component\Filesystem\Adapter\NullAdapter;
use SonsOfPHP\Contract\Filesystem\Adapter\AdapterInterface;

/**
* @internal
*/
#[CoversClass(NullAdapter::class)]
#[CoversNothing]
final class NullAdapterTest extends TestCase
{
#[CoversNothing]
public function testItHasTheCorrectInterface(): void
{
$adapter = new NullAdapter();
Expand Down
3 changes: 0 additions & 3 deletions Tests/ContextTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
namespace SonsOfPHP\Component\Filesystem\Tests;

use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\CoversNothing;
use PHPUnit\Framework\Attributes\UsesClass;
use PHPUnit\Framework\TestCase;
use SonsOfPHP\Component\Filesystem\Context;
Expand All @@ -15,10 +14,8 @@

#[CoversClass(Context::class)]
#[UsesClass(Context::class)]
#[CoversNothing]
final class ContextTest extends TestCase
{
#[CoversNothing]
public function testItHasTheCorrectInterface(): void
{
$context = new Context();
Expand Down

0 comments on commit 75580e6

Please sign in to comment.