Skip to content

Commit

Permalink
Merge pull request #419 from ergebnis/fix/unused
Browse files Browse the repository at this point in the history
Fix: Remove unused imports
  • Loading branch information
localheinz authored Dec 16, 2023
2 parents f95d66c + 95a6eb8 commit 3ddec39
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 11 deletions.
2 changes: 0 additions & 2 deletions test/Phar/SleeperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@
#[Framework\Attributes\CoversClass(Test\Fixture\Sleeper::class)]
final class SleeperTest extends Framework\TestCase
{
use Test\Util\Helper;

public function testSleeperDoesNotSleepAtAll(): void
{
$milliseconds = 0;
Expand Down
3 changes: 0 additions & 3 deletions test/Unit/Comparator/DurationComparatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

use Ergebnis\PHPUnit\SlowTestDetector\Comparator;
use Ergebnis\PHPUnit\SlowTestDetector\Duration;
use Ergebnis\PHPUnit\SlowTestDetector\Test;
use PHPUnit\Framework;

/**
Expand All @@ -25,8 +24,6 @@
*/
final class DurationComparatorTest extends Framework\TestCase
{
use Test\Util\Helper;

public function testReturnsMinusOneWhenOneIsLessThanTwo(): void
{
$one = Duration::fromSecondsAndNanoseconds(
Expand Down
3 changes: 0 additions & 3 deletions test/Unit/Exception/InvalidTestIdentifierTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,13 @@
namespace Ergebnis\PHPUnit\SlowTestDetector\Test\Unit\Exception;

use Ergebnis\PHPUnit\SlowTestDetector\Exception;
use Ergebnis\PHPUnit\SlowTestDetector\Test;
use PHPUnit\Framework;

/**
* @covers \Ergebnis\PHPUnit\SlowTestDetector\Exception\InvalidTestIdentifier
*/
final class InvalidTestIdentifierTest extends Framework\TestCase
{
use Test\Util\Helper;

public function testBlankOrEmptyReturnsException(): void
{
$exception = Exception\InvalidTestIdentifier::blankOrEmpty();
Expand Down
3 changes: 0 additions & 3 deletions test/Unit/Formatter/DefaultDurationFormatterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

use Ergebnis\PHPUnit\SlowTestDetector\Duration;
use Ergebnis\PHPUnit\SlowTestDetector\Formatter;
use Ergebnis\PHPUnit\SlowTestDetector\Test;
use PHPUnit\Framework;

/**
Expand All @@ -25,8 +24,6 @@
*/
final class DefaultDurationFormatterTest extends Framework\TestCase
{
use Test\Util\Helper;

/**
* @dataProvider provideDurationAndFormattedDuration
*/
Expand Down

0 comments on commit 3ddec39

Please sign in to comment.