Skip to content

Commit 95a6eb8

Browse files
committed
Fix: Remove unused imports
1 parent f95d66c commit 95a6eb8

File tree

4 files changed

+0
-11
lines changed

4 files changed

+0
-11
lines changed

test/Phar/SleeperTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
#[Framework\Attributes\CoversClass(Test\Fixture\Sleeper::class)]
2020
final class SleeperTest extends Framework\TestCase
2121
{
22-
use Test\Util\Helper;
23-
2422
public function testSleeperDoesNotSleepAtAll(): void
2523
{
2624
$milliseconds = 0;

test/Unit/Comparator/DurationComparatorTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
use Ergebnis\PHPUnit\SlowTestDetector\Comparator;
1717
use Ergebnis\PHPUnit\SlowTestDetector\Duration;
18-
use Ergebnis\PHPUnit\SlowTestDetector\Test;
1918
use PHPUnit\Framework;
2019

2120
/**
@@ -25,8 +24,6 @@
2524
*/
2625
final class DurationComparatorTest extends Framework\TestCase
2726
{
28-
use Test\Util\Helper;
29-
3027
public function testReturnsMinusOneWhenOneIsLessThanTwo(): void
3128
{
3229
$one = Duration::fromSecondsAndNanoseconds(

test/Unit/Exception/InvalidTestIdentifierTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,13 @@
1414
namespace Ergebnis\PHPUnit\SlowTestDetector\Test\Unit\Exception;
1515

1616
use Ergebnis\PHPUnit\SlowTestDetector\Exception;
17-
use Ergebnis\PHPUnit\SlowTestDetector\Test;
1817
use PHPUnit\Framework;
1918

2019
/**
2120
* @covers \Ergebnis\PHPUnit\SlowTestDetector\Exception\InvalidTestIdentifier
2221
*/
2322
final class InvalidTestIdentifierTest extends Framework\TestCase
2423
{
25-
use Test\Util\Helper;
26-
2724
public function testBlankOrEmptyReturnsException(): void
2825
{
2926
$exception = Exception\InvalidTestIdentifier::blankOrEmpty();

test/Unit/Formatter/DefaultDurationFormatterTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
use Ergebnis\PHPUnit\SlowTestDetector\Duration;
1717
use Ergebnis\PHPUnit\SlowTestDetector\Formatter;
18-
use Ergebnis\PHPUnit\SlowTestDetector\Test;
1918
use PHPUnit\Framework;
2019

2120
/**
@@ -25,8 +24,6 @@
2524
*/
2625
final class DefaultDurationFormatterTest extends Framework\TestCase
2726
{
28-
use Test\Util\Helper;
29-
3027
/**
3128
* @dataProvider provideDurationAndFormattedDuration
3229
*/

0 commit comments

Comments
 (0)